transcendental-lisp/test/function/builtin/FUNCALLTester.java

33 lines
812 B
Java
Raw Normal View History

package function.builtin;
import static testutil.TestUtilities.*;
import org.junit.Test;
import function.ArgumentValidator.TooFewArgumentsException;
public class FUNCALLTester {
@Test
public void testFuncallWithNumbers() {
String input = "(funcall '+ 1 2 3)";
assertSExpressionsMatch(parseString("6"), evaluateString(input));
}
@Test
public void testFuncallWithUserDefinedFunction() {
String defineUserFunction = "(defun x (n m) (+ n m))";
String input = "(funcall 'x 2 30)";
evaluateString(defineUserFunction);
assertSExpressionsMatch(parseString("32"), evaluateString(input));
}
@Test(expected = TooFewArgumentsException.class)
public void testFuncallWithTooFewArguments() {
evaluateString("(funcall)");
}
}