Filtering...

check-fn-call-tests

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

Included Books

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