[Bael 6099] - Add "core-java-10" and "core-java-11" modules (#4125)

* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* [BAEL-6099] - Added core-java-10 and core-java-11 modules

* [BAEL-6099] - Added core-java-10 and core-java-11 modules

* [BAEL-6099] - Enforced compiling to a particular version

* [BAEL-6099] - Enforced compiling to a particular version
This commit is contained in:
amit2103
2018-04-29 20:37:32 +05:30
committed by Grzegorz Piwowarek
parent 57776ac968
commit e9a0babbe5
6 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package com.baeldung;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}