Lines Matching full:cases
54 * Input: The source files of the test cases. It will be represented
253 * information of all the test package, test suite and test cases.
411 * @param cases A collection of test cases included by the test suite class.
413 void appendTestCases(Node elem, Collection<TestMethod> cases) {
414 if (cases.isEmpty()) {
418 for (TestMethod caze : cases) {
502 * @param cases The test cases included in this test suite.
504 TestClass(String name, Collection<TestMethod> cases) {
506 mCases = cases;
528 ArrayList<TestMethod> cases = new ArrayList<TestMethod>();
560 cases.add(new TestMethod(name, method.commentText(), controller, knownFailure,
565 return cases;