Format source code in a more natural Java way (#32)
This commit is contained in:
@@ -5,10 +5,8 @@
|
||||
|
||||
package com.mycompany.app;
|
||||
|
||||
public class App
|
||||
{
|
||||
public static void main( String[] args )
|
||||
{
|
||||
public class App {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello Remote World!");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,23 +1,21 @@
|
||||
package com.mycompany.app;
|
||||
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
|
||||
public class AppTest
|
||||
{
|
||||
public class AppTest {
|
||||
public AppTest() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testApp()
|
||||
{
|
||||
public void testApp() {
|
||||
assertTrue(true);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMore()
|
||||
{
|
||||
public void testMore() {
|
||||
assertTrue(true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user