123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.rdlze.radializebase;
- 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 );
- }
- }
|