Migrate to JUnit5
This commit is contained in:
@ -22,7 +22,8 @@
|
||||
*/
|
||||
package com.iluwatar.mutex;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
|
@ -22,8 +22,10 @@
|
||||
*/
|
||||
package com.iluwatar.mutex;
|
||||
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
/**
|
||||
* Test case for taking beans from a Jar
|
||||
|
@ -22,8 +22,11 @@
|
||||
*/
|
||||
package com.iluwatar.mutex;
|
||||
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||
import static org.junit.jupiter.api.Assertions.fail;
|
||||
|
||||
/**
|
||||
* Test case for acquiring and releasing a Mutex
|
||||
|
Reference in New Issue
Block a user