This commit is contained in:
Chuck Lantz
2019-04-16 20:03:58 -07:00
parent 45e53edc7a
commit 8b515180fb
13 changed files with 204 additions and 1 deletions

View 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!" );
}
}

View 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 );
}
}