Migrate to JUnit5

This commit is contained in:
Artur Mogozov
2017-12-31 16:29:48 +09:00
parent a20e54d0a7
commit 6694d742a3
408 changed files with 2656 additions and 2165 deletions

View File

@ -20,7 +20,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Created by Srdjan on 03-May-17.

View File

@ -22,7 +22,7 @@
*/
package concreteextensions;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import units.CommanderUnit;
/**

View File

@ -22,7 +22,7 @@
*/
package concreteextensions;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import units.SergeantUnit;
/**

View File

@ -22,7 +22,7 @@
*/
package concreteextensions;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import units.SoldierUnit;
/**

View File

@ -23,10 +23,10 @@
package units;
import abstractextensions.CommanderExtension;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
/**
* Created by Srdjan on 03-May-17.

View File

@ -23,10 +23,10 @@
package units;
import abstractextensions.SergeantExtension;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
/**
* Created by Srdjan on 03-May-17.

View File

@ -23,10 +23,10 @@
package units;
import abstractextensions.SoldierExtension;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
/**
* Created by Srdjan on 03-May-17.

View File

@ -22,10 +22,10 @@
*/
package units;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
/**
* Created by Srdjan on 03-May-17.