File tree 6 files changed +16
-16
lines changed
src/test/java/org/fusesource/jansi
6 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 264
264
265
265
<dependencies >
266
266
<dependency >
267
- <groupId >junit</groupId >
268
- <artifactId >junit</artifactId >
269
- <version >4.13.1 </version >
267
+ <groupId >org. junit.jupiter </groupId >
268
+ <artifactId >junit-jupiter-engine </artifactId >
269
+ <version >5.7.0 </version >
270
270
<scope >test</scope >
271
271
</dependency >
272
272
</dependencies >
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .fusesource .jansi ;
17
17
18
- import org .junit .Test ;
18
+ import org .junit .jupiter . api . Test ;
19
19
20
- import static org .junit .Assert .assertEquals ;
20
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
21
21
22
22
/**
23
- * Tests for {@link AnsiString}.
24
- *
25
23
* @author <a href="mailto:[email protected] ">Jason Dillon</a>
26
24
*/
27
25
public class AnsiStringTest {
Original file line number Diff line number Diff line change 16
16
package org .fusesource .jansi ;
17
17
18
18
import org .fusesource .jansi .Ansi .Color ;
19
- import org .junit .Test ;
19
+ import org .junit .jupiter . api . Test ;
20
20
21
- import static org .junit .Assert .assertEquals ;
21
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
22
22
23
23
/**
24
24
* Tests for the {@link Ansi} class.
Original file line number Diff line number Diff line change 12
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
- */ package org .fusesource .jansi ;
15
+ */
16
+ package org .fusesource .jansi ;
16
17
17
18
import java .io .ByteArrayOutputStream ;
18
19
import java .io .PrintStream ;
19
20
import java .io .UnsupportedEncodingException ;
20
21
import java .util .concurrent .atomic .AtomicReference ;
21
22
22
- import org .junit .Test ;
23
+ import org .junit .jupiter .api .Test ;
24
+
25
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
23
26
24
- import static org .junit .Assert .assertEquals ;
25
27
26
28
public class EncodingTest {
27
29
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .fusesource .jansi ;
17
17
18
- import org .junit .Test ;
18
+ import org .junit .jupiter . api . Test ;
19
19
20
- import static org .junit .Assert .assertEquals ;
21
- import static org .junit .Assume .assumeTrue ;
20
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
21
+ import static org .junit .jupiter . api . Assumptions .assumeTrue ;
22
22
23
23
public class WindowsSupportTest {
24
24
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .fusesource .jansi .internal ;
17
17
18
- import org .junit .Test ;
18
+ import org .junit .jupiter . api . Test ;
19
19
20
20
public class JansiLoaderTest {
21
21
You can’t perform that action at this time.
0 commit comments