Searched defs:test (Results 1 - 23 of 23) sorted by relevance

/ec/ECSpooler/backends/cl/
H A DsimpleTest.lisp1 (defun test (a b) (equal a b)) function
H A DCl.py32 # load Cl function to do a simple test
39 # load Cl function to do a test which allows permutation of list elems
76 ;; test function
79 ;; print test results
81 (test ${%s} ${%s}) ; model, student
86 NS_MODEL, NS_STUDENT, # form (test ...)
117 'and test data as parameters of this funtion, e.g, '+
131 test = simpleTest, variable
143 # test = permTest,
156 model solution on given test dat
[all...]
/ec/ECSpooler/backends/erlang/
H A DpermTest.erl0 test([],[]) -> true;
2 test(L1, L2) -> if length(L1) /= length(L2) -> false; function
3 true -> lists:member(hd(L1), L2) andalso test(tl(L1), lists:delete(hd(L1),L2))
1 test([],[]) -> true; function
H A DsimpleTest.erl0 test(A, A) -> true;
2 test(_, _) -> false. function
1 test(A, A) -> true; function
H A DErlang.py55 start() -> io:fwrite("isEqual=~w;;expected=~w;;received=~w", [test(o1(), o2()), o1(), o2()]).
83 'and test data as parameters of this funtion. '+
96 test = simpleTest, variable
107 test = permTest, variable
119 student and model solution on given test data.
137 def _preProcessCheckSyntax(self, test, src, **kwargs):
151 def _postProcessCheckSyntax(self, test, message):
162 def _preProcessCheckSemantic(self, test, src, **kwargs):
173 Runs sematic test on a Erlang program.
178 # test fo
[all...]
/ec/ECSpooler/backends/python/
H A DpermTest.py3 def test(list1, list2): function
H A DsimpleTest.py3 def test(a, b): function
H A DPython.py27 # load Haskell function to do a simple test
34 # load Haskell function to do a test which allows permutation of list elems
48 # must be named 'test'
54 print >> sys.stdout, \"isEqual=\" + str(test(o1, o2)) + \";;expected=\" + str(o1) + \";;received=\" + str(o2)
85 'and test data as parameters of this funtion. '+
97 description = 'Simple test; only exact result are allowed.',
98 test = simpleTest, variable
107 test = permTest, variable
136 def _postProcessCheckSyntax(self, test, message):
150 # test fo
[all...]
/ec/ECSpooler/backends/scheme/
H A DsimpleTest.scm1 (define (test a b) (equal? a b)) function
H A DpermTest.scm20 (define (test a b) (is-permutation a b) ) function
H A DScheme.py27 # load Scheme function to do a simple test
34 # load Haskell function to do a test which allows permutation of list elems
75 ;; test function
78 ;; print test results
80 (printf "isEqual=~s;;expected=~s;;received=~s" (test ms ss) ms ss))
109 'and test data as parameters of this funtion, e.g, '+
123 test = simpleTest, variable
135 test = permTest, variable
147 model solution on given test data.
166 def _preProcessCheckSyntax(self, test, sr
[all...]
/ec/ECSpooler/backends/java/
H A DsimpleTest.java1 private static boolean test(Object a, Object b) method
H A DJava.py34 # load Java function to do a simple test
40 # load Java function to do a test which allows permutation of list elems
78 Boolean eql = new Boolean(test(exp, rec));
105 'or as a parameter in a test call.',
114 description = 'Enter one or more test calls. A test call is ' +
119 'Each test call must be written in a single line.',
131 test = simpleTest, variable
142 # test = permTest,
182 student and model solution on a given set of test dat
[all...]
/ec/ECSpooler/backends/javare/
H A DfindFirstGroup0.java5 private static RETestRes test(String model_pat, method
H A DJavaRE.py35 # load Java function to do a simple test
76 'and test data as parameters of this funtion. '+
89 test = findFirstGroup0, variable
144 * Need better test environments (find all, compare sub groups, etc.)
194 def _preProcessCheckSyntax(self, test, src, **kwargs):
217 return (test.syntax % src[1:-1], CLASS_SYNTACTIC_CHECK)
220 def _postProcessCheckSyntax(self, test, message):
233 'line: %d' % (int(match[1]) - test.lineNumberOffset),
243 Runs sematic test on a Java program.
252 # test fo
[all...]
/ec/ECSpooler/backends/junit/junit_libs/
H A DTestClassWithPackage.jar ... META-INF/MANIFEST.MF org/educomponents/test/TestClassWithPackage.class TestClassWithPackage.java package org.educomponents ...
H A Djunit-4.3.1.jar ... 3Cinit%3E" <init> (junit.framework.Test, int) junit.framework.Test test int repeat public ...
/ec/ECSpooler/lib/util/
H A Dauth.py57 def test(self, args, level): member in class:UserAuthMD5
146 print uamd5.authorize('test', 'SuPPe')
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/tool/
H A DECSpoolerTool.py324 """Returns a dict with test specifiactions for this backend.
331 #LOG.debug("Loading backend test fields for '%s'" % backend)
344 # backend test fields should be cached now
351 security.declareProtected(permissions.ModifyPortalContent, 'test')
352 def test(self, host=None, port=None, username=None, password=None): member in class:ECSpoolerTool
/ec/ECSpooler/backends/haskell/
H A DHaskell.py37 # load Haskell function to do a simple test
44 # load Haskell function to do a test which allows permutation of list elems
51 # load Haskell function to do a test which allows tolerance
113 'and test data as parameters of this funtion. '+
126 test = simpleTest, variable
138 test = permTest, variable
150 test = toleranceTest, variable
165 student and model solution on given test data.
183 def _preProcessCheckSyntax(self, test, src, **kwargs):
189 @param: test
[all...]
/ec/ECSpooler/backends/prolog/
H A DProlog.py108 'and test data as parameters of this funtion. '+
121 test = SIMPLE_TEST, variable
132 test = PERM_TEST, variable
143 test = PRED_TEST, variable
160 student and model solution on given test data.
192 def _preProcessCheckSyntax(self, test, src, **kwargs):
206 def _postProcessCheckSyntax(self, test, message):
227 (int(match[1]) - test.lineNumberOffset, match[3]),
238 test data. For
253 def _preProcessCheckSemantic(self, test, sr
[all...]
/ec/ECSpooler/backends/xml/bin/saxon/
H A Dsaxon9he.jarMETA-INF/MANIFEST.MF META-INF/SAXONICA.SF META-INF/SAXONICA.RSA META ...
/ec/ECSpooler/backends/sql/lib/
H A Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/hsqldb/index/ org/hsqldb/jdbc/ org/ ...

Completed in 4588 milliseconds