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

@ -18,12 +18,10 @@
*/
package com.iluwatar.module;
import org.junit.jupiter.api.Test;
import java.io.FileNotFoundException;
import com.iluwatar.module.App;
import org.junit.Test;
/**
* Tests that Module example runs without errors.
*/

View File

@ -18,15 +18,15 @@
*/
package com.iluwatar.module;
import static org.junit.Assert.assertEquals;
import org.apache.log4j.Logger;
import org.junit.jupiter.api.Test;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import org.apache.log4j.Logger;
import org.junit.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* The Module pattern can be considered a Creational pattern and a Structural pattern. It manages