Name of the Java method to run one of the specified tests.
This is generated only if the
We generate a private static method for each test
specified by the
The argument of this function is the name of the test.
Function:
(defun atj-gen-test-method-name (test-name) (declare (xargs :guard (stringp test-name))) (let ((__function__ 'atj-gen-test-method-name)) (declare (ignorable __function__)) (str::cat "test_" test-name)))
Theorem:
(defthm stringp-of-atj-gen-test-method-name (b* ((method-name (atj-gen-test-method-name test-name))) (stringp method-name)) :rule-classes :rewrite)