Skip to content
Snippets Groups Projects
Verified Commit a9b6b6fa authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

Modified names to eliminate steps during lab

parent a04c9da7
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ package edu.unl.cse.soft160.rest_practice; ...@@ -3,7 +3,7 @@ package edu.unl.cse.soft160.rest_practice;
/** /**
* Hello world! * Hello world!
*/ */
public class App { public class WeatherReporter {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Hello World!"); System.out.println("Hello World!");
} }
......
package edu.unl.cse.soft160.rest_practice;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Unit test for simple App.
*/
public class AppTest {
/**
* Rigorous Test :-)
*/
@Test
public void testApp() {
assertTrue(true);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment