Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Kaufmann committed Apr 10, 2018
1 parent 9d1e0a0 commit f5bee76
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,76 +33,87 @@ public void beforeTest()
@Test
public void testCanReadPackageDataCSV()
{
// test package test data csv is read
Result result = JUnitCore.runClasses(CanReadPackageDataCSV.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadPackageDataJson()
{
// test package test data json is read
Result result = JUnitCore.runClasses(CanReadPackageDataJson.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadPackageDataProperties()
{
// test package test data properties is read
Result result = JUnitCore.runClasses(CanReadPackageDataProperties.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadPackageDataXML()
{
// test package test data xml is read
Result result = JUnitCore.runClasses(CanReadPackageDataXML.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadDataSetCSV()
{
// test data set csv is read
Result result = JUnitCore.runClasses(CanReadDataSetCSV.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadDataSetJson()
{
// test data set json is read
Result result = JUnitCore.runClasses(CanReadDataSetJson.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadDataSetProperties()
{
// test data set properties is read
Result result = JUnitCore.runClasses(CanReadDataSetProperties.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testCanReadDataSetXML()
{
// test data set xml is read
Result result = JUnitCore.runClasses(CanReadDataSetXML.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testPackageTestDataInheritance()
{
// test inheritacne of package test data
Result result = JUnitCore.runClasses(PackageTestDataInheritance.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testGrandChildPackageTestDataInheritance()
{
// test multiple inheritance of package test data
Result result = JUnitCore.runClasses(GrandChildPackageTestDataInheritance.class);
checkPass(result, 1, 0, 0);
}

@Test
public void testDataSetOverridesPackageData()
{
// test that data set overrides package test data
Result result = JUnitCore.runClasses(DataSetOverridesPackageData.class);
checkPass(result, 1, 0, 0);
}
Expand Down

0 comments on commit f5bee76

Please sign in to comment.