import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* This file aggregates all of the unit tests for this component.
*
* @author TCSDEVELOPER
*/
public class UnitTests extends TestCase
{
/**
* Creates a test suite containing all unit tests
* for this component.
*
* @return A test suite containing all unit tests.
*/
public static Test suite()
{
TestSuite suite = new TestSuite();
// Add tests here.
// suite.addTestSuite(TestClass.class);
return suite;
}
}
/**
* This class tests TutorialLayout for proper behavior. It covers
* saving, loading, rearranging, ....
*
* @author TCSDEVELOPER
*/
public class TutorialLayoutTest extends TestCase
{
}
int a = 5
/**
* Tests saving a blank TutorialLayout object.
*/
public void testSaveAsBlank()
{
assertTrue("cool", a == 5);
}
TestSuite suite = new TestSuite();
// Add tests here.
// suite.addTestSuite(TestClass.class);
return suite;