Complete Refactor of File Directories
parent
27dff46ebe
commit
d23927fd6e
@ -1,4 +1,4 @@
|
|||||||
package tdd.hello.world.src.main.java.hello.world;
|
package tdd.hello.world.src.java;
|
||||||
|
|
||||||
public class Greeting {
|
public class Greeting {
|
||||||
String message;
|
String message;
|
@ -1,4 +1,4 @@
|
|||||||
package tdd.hello.world.src.main.java.hello.world;
|
package tdd.hello.world.src.java;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hello world!
|
* Hello world!
|
@ -1,18 +1,13 @@
|
|||||||
package tdd.hello.world.src.test.java.hello.world;
|
package tdd.hello.world.test.java;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import tdd.hello.world.src.main.java.hello.world.Greeting;
|
import tdd.hello.world.src.java.Greeting;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotEquals;
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
|
||||||
/**
|
|
||||||
* Unit test for simple App.
|
|
||||||
*/
|
|
||||||
public class HelloWorldTest {
|
public class HelloWorldTest {
|
||||||
/**
|
|
||||||
* Rigorous Test :-)
|
|
||||||
*/
|
|
||||||
@Test
|
@Test
|
||||||
public void greetingMessageShouldPass() {
|
public void greetingMessageShouldPass() {
|
||||||
Greeting greeting = new Greeting("Hello World");
|
Greeting greeting = new Greeting("Hello World");
|
Loading…
Reference in New Issue