Format source code in a more natural Java way (#32)

This commit is contained in:
Julien Dubois
2022-05-10 17:17:10 +02:00
committed by GitHub
parent 966f9691d3
commit 9cf57710ea
2 changed files with 10 additions and 14 deletions

View File

@@ -5,10 +5,8 @@
package com.mycompany.app; package com.mycompany.app;
public class App public class App {
{ public static void main(String[] args) {
public static void main( String[] args )
{
System.out.println("Hello Remote World!"); System.out.println("Hello Remote World!");
} }
} }

View File

@@ -1,23 +1,21 @@
package com.mycompany.app; package com.mycompany.app;
import org.junit.Test; import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertTrue;
public class AppTest public class AppTest {
{
public AppTest() { public AppTest() {
} }
@Test @Test
public void testApp() public void testApp() {
{
assertTrue(true); assertTrue(true);
} }
@Test @Test
public void testMore() public void testMore() {
{
assertTrue(true); assertTrue(true);
} }
} }