Skip to content

Commit

Permalink
test: migrate TestCtRole to JUnit 5 (#4466)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt committed Jan 13, 2022
1 parent e358833 commit f6db1b1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/test/java/spoon/test/role/TestCtRole.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package spoon.test.role;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import spoon.SpoonException;
import spoon.reflect.path.CtRole;
Expand All @@ -26,12 +26,12 @@
import spoon.support.reflect.declaration.CtFieldImpl;
import spoon.support.reflect.declaration.CtMethodImpl;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertSame;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;

public class TestCtRole {
@Test
Expand Down

0 comments on commit f6db1b1

Please sign in to comment.