package fixes
This commit is contained in:
parent
7114e3965b
commit
f913859c6f
|
@ -1,9 +1,10 @@
|
||||||
package com.baeldung.application;
|
package com.baeldung.hashcode.application;
|
||||||
|
|
||||||
import com.baeldung.entities.User;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import com.baeldung.hashcode.entities.User;
|
||||||
|
|
||||||
public class Application {
|
public class Application {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.entities;
|
package com.baeldung.hashcode.entities;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.application;
|
package com.baeldung.hashcode.application;
|
||||||
|
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.entities;
|
package com.baeldung.hashcode.entities;
|
||||||
|
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
|
@ -23,7 +23,7 @@ public class UserTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void equals_EqualUserInstance_TrueAssertion(){
|
public void equals_EqualUserInstance_TrueAssertion() {
|
||||||
Assert.assertTrue(user.equals(comparisonUser));
|
Assert.assertTrue(user.equals(comparisonUser));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue