1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.ym;
- import junit.framework.Test;
- import junit.framework.TestCase;
- import junit.framework.TestSuite;
- public class AppTest
- extends TestCase
- {
-
- public AppTest( String testName )
- {
- super( testName );
- }
-
- public static Test suite()
- {
- return new TestSuite( AppTest.class );
- }
-
- public void testApp()
- {
- assertTrue( true );
- }
- }
|