Migrate to JUnit5
This commit is contained in:
@ -18,8 +18,7 @@
|
||||
*/
|
||||
package com.iluwatar.datamapper;
|
||||
|
||||
import com.iluwatar.datamapper.App;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Tests that Data-Mapper example runs without errors.
|
||||
|
@ -18,13 +18,9 @@
|
||||
*/
|
||||
package com.iluwatar.datamapper;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.iluwatar.datamapper.Student;
|
||||
import com.iluwatar.datamapper.StudentDataMapper;
|
||||
import com.iluwatar.datamapper.StudentDataMapperImpl;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* The Data Mapper (DM) is a layer of software that separates the in-memory objects from the
|
||||
|
@ -18,10 +18,10 @@
|
||||
*/
|
||||
package com.iluwatar.datamapper;
|
||||
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.junit.Test;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
/**
|
||||
* Tests {@link Student}.
|
||||
|
Reference in New Issue
Block a user