Skip to content

Commit

Permalink
test: migrate AnnotationLoopTest to junit 5 (#4414)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 7, 2022
1 parent 4e7bbf1 commit 55f6a57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/spoon/test/annotation/AnnotationLoopTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
*/
package spoon.test.annotation;

import org.junit.Test;
import org.junit.jupiter.api.Test;
import spoon.reflect.code.CtFor;
import spoon.reflect.code.CtLocalVariable;
import spoon.reflect.declaration.CtType;
import spoon.reflect.visitor.filter.TypeFilter;
import spoon.test.annotation.testclasses.Pozole;
import spoon.testing.utils.ModelUtils;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertSame;

public class AnnotationLoopTest {

Expand Down

0 comments on commit 55f6a57

Please sign in to comment.