Java-2394 Create default and integration profile for JDK-9 and above modules

This commit is contained in:
mikr
2020-09-10 01:08:03 +02:00
parent d75b1e880d
commit ccac9de896
18 changed files with 140 additions and 33 deletions

View File

@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
public class AppUnitTest
extends TestCase
{
/**
@@ -15,7 +15,7 @@ public class AppTest
*
* @param testName name of the test case
*/
public AppTest( String testName )
public AppUnitTest(String testName )
{
super( testName );
}
@@ -25,7 +25,7 @@ public class AppTest
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
return new TestSuite( AppUnitTest.class );
}
/**