Rename the package: <module>core-java-11-</module> to project
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung;
|
||||
package com.ossez;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung;
|
||||
package com.ossez;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
|
||||
+6
-4
@@ -1,4 +1,4 @@
|
||||
package com.baeldung;
|
||||
package com.ossez;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
@@ -6,11 +6,13 @@ import static org.hamcrest.CoreMatchers.is;
|
||||
import java.util.Arrays;
|
||||
import java.util.Set;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import com.ossez.Outer;
|
||||
import org.junit.Test;
|
||||
|
||||
public class OuterUnitTest {
|
||||
|
||||
private static final String NEST_HOST_NAME = "com.baeldung.Outer";
|
||||
private static final String NEST_HOST_NAME = "Outer";
|
||||
|
||||
@Test
|
||||
public void whenGetNestHostFromOuter_thenGetNestHost() {
|
||||
@@ -40,7 +42,7 @@ public class OuterUnitTest {
|
||||
|
||||
is(nestMembers.size()).equals(2);
|
||||
|
||||
assertTrue(nestMembers.contains("com.baeldung.Outer"));
|
||||
assertTrue(nestMembers.contains("com.baeldung.Outer$Inner"));
|
||||
assertTrue(nestMembers.contains("Outer"));
|
||||
assertTrue(nestMembers.contains("Outer$Inner"));
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -1,5 +1,6 @@
|
||||
package com.baeldung.benchmark;
|
||||
package com.ossez.benchmark;
|
||||
|
||||
import com.ossez.benchmark.IntegerListFilter;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
+2
-1
@@ -1,5 +1,6 @@
|
||||
package com.baeldung.benchmark;
|
||||
package com.ossez.benchmark;
|
||||
|
||||
import com.ossez.benchmark.IntegerListSum;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.java11.httpclient.test;
|
||||
package com.ossez.java11.httpclient.test;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.containsString;
|
||||
import static org.hamcrest.CoreMatchers.equalTo;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.java11.httpclient.test;
|
||||
package com.ossez.java11.httpclient.test;
|
||||
|
||||
import static java.time.temporal.ChronoUnit.SECONDS;
|
||||
import static org.hamcrest.CoreMatchers.containsString;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.java11.httpclient.test;
|
||||
package com.ossez.java11.httpclient.test;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.equalTo;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.optional;
|
||||
package com.ossez.optional;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.patternreuse;
|
||||
package com.ossez.patternreuse;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
+2
-1
@@ -1,4 +1,4 @@
|
||||
package com.baeldung.predicate.not;
|
||||
package com.ossez.predicate.not;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
@@ -6,6 +6,7 @@ import java.util.stream.Collectors;
|
||||
|
||||
import static java.util.function.Predicate.not;
|
||||
|
||||
import com.ossez.predicate.not.Person;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
Reference in New Issue
Block a user