Initial
This commit is contained in:
14
src/main/java/com/mycompany/app/App.java
Normal file
14
src/main/java/com/mycompany/app/App.java
Normal file
@@ -0,0 +1,14 @@
|
||||
/*----------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See LICENSE in the project root for license information.
|
||||
*---------------------------------------------------------------------------------------*/
|
||||
|
||||
package com.mycompany.app;
|
||||
|
||||
public class App
|
||||
{
|
||||
public static void main( String[] args )
|
||||
{
|
||||
System.out.println( "Hello Remote World!" );
|
||||
}
|
||||
}
|
||||
23
src/test/java/com/mycompany/app/AppTest.java
Normal file
23
src/test/java/com/mycompany/app/AppTest.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.mycompany.app;
|
||||
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
|
||||
public class AppTest
|
||||
{
|
||||
public AppTest() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testApp()
|
||||
{
|
||||
assertTrue( true );
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMore()
|
||||
{
|
||||
assertTrue( true );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user