Initial commit

This commit is contained in:
2022-03-23 12:48:37 +01:00
commit 0aca965fcc
3 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package com.mycompany.app;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

View File

@ -0,0 +1,20 @@
package com.mycompany.app;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Unit test for simple App.
*/
public class AppTest
{
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue()
{
assertTrue( true );
}
}