Filtering...

check-not-call-tests

books/std/system/check-not-call-tests

Included Books

other
(in-package "ACL2")
include-book
(include-book "check-not-call")
include-book
(include-book "std/testing/assert-equal" :dir :system)
other
(assert-equal (mv-list 2 (check-not-call 'x)) '(nil nil))
other
(assert-equal (mv-list 2 (check-not-call ''7/5)) '(nil nil))
other
(assert-equal (mv-list 2
    (check-not-call '((lambda (x y) (cons x y)) a b)))
  '(nil nil))
other
(assert-equal (mv-list 2 (check-not-call '(h a b)))
  '(nil nil))
other
(assert-equal (mv-list 2 (check-not-call '(not a))) '(t a))
other
(assert-equal (mv-list 2 (check-not-call '(not (not x))))
  '(t (not x)))