Home | History | Annotate | Download | only in testsetup
      1 package test.junit.testsetup;
      2 
      3 import junit.framework.TestCase;
      4 
      5 public class ATest extends TestCase
      6 {
      7 	public void testIt()
      8 	{
      9     System.out.println("A.testIt()");
     10 		Data d = TestSuiteContainerWrapper.getData();
     11 		assertEquals(3,d.i);
     12 	}
     13 }
     14