/**
* Tests the assertion assertOK for TestSuites
*/
@Test
public void testAssertOkTS() {
TestSuite testSuite1 = new TestSuite("TestSuite1");
TestCase testCase1 = new TestCase("TestCase1");
testCase1.newTestStepGroup("TestStepGroup1");
final TestStep testStep = testCase.newTestStep(TestStatus.OK,
"mySimpleTestCommand", "This is just a simple test.",
"Everything is working fine.");
testStep.finish();
testCase1.addTestStep(testStep);
testSuite1.addTestCase(testCase1);
Assert.assertOk(testSuite1);
}