Example #1
0
 @BeforeClass
 public void init() {
   suite = eval.generateTestCases(manifest, web);
   suite.setName("W3C RDF1.1/XML test");
   suite.setUri(web);
   suite.setManifest(manifest);
 }
Example #2
0
 @Test(dataProvider = "data")
 public void testXMLNegativeSyntax(TestCase tc) {
   eval.run(tc);
 }
Example #3
0
 @Test(dataProvider = "data")
 // The name of the method should be ["test"+ "filed name of test type"],
 // the field name(*public static*) is defined in another class
 public void testXMLPositiveEval(TestCase tc) {
   eval.run(tc);
 }
Example #4
0
 // @Test(dataProvider = "data")
 public void testAll(TestCase tc) {
   eval.run(tc);
 }