Skip to content

Commit 686738d

Browse files
committed
Rename package to match project name.
1 parent a8b912c commit 686738d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/main/java/com/example/hellowithtests/Hello.java renamed to src/main/java/com/example/javamavenjunithelloworld/Hello.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.hellowithtests;
1+
package com.example.javamavenjunithelloworld;
22

33
import java.io.PrintStream;
44

src/main/java/com/example/hellowithtests/HelloApp.java renamed to src/main/java/com/example/javamavenjunithelloworld/HelloApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.hellowithtests;
1+
package com.example.javamavenjunithelloworld;
22

33
/**
44
* A very basic program that demonstrates the use of JUnit tests. The tests include a sample unit test and an

src/test/java/com/example/hellowithtests/HelloAppTest.java renamed to src/test/java/com/example/javamavenjunithelloworld/HelloAppTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.hellowithtests;
1+
package com.example.javamavenjunithelloworld;
22

33
import org.junit.Test;
44
import org.junit.runner.RunWith;

src/test/java/com/example/hellowithtests/HelloTest.java renamed to src/test/java/com/example/javamavenjunithelloworld/HelloTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.hellowithtests;
1+
package com.example.javamavenjunithelloworld;
22

33
import org.junit.Test;
44

src/test/java/com/example/hellowithtests/HelloWithTestsIT.java renamed to src/test/java/com/example/javamavenjunithelloworld/HelloWithTestsIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.hellowithtests;
1+
package com.example.javamavenjunithelloworld;
22

33
import org.junit.Rule;
44
import org.junit.Test;
@@ -8,7 +8,7 @@
88
import static org.junit.Assert.*;
99

1010
/**
11-
* Integration test for the hellowithtests program.
11+
* Integration test for the HelloApp program.
1212
* <p/>
1313
* An integration test verifies the workings of a complete program, a module, or a set of dependant classes.
1414
* <p/>

0 commit comments

Comments
 (0)