Skip to content

Commit

Permalink
test: migrate ImplicitStaticFieldReferenceTest to JUnit 5 (#4444)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 11, 2022
1 parent 5676f75 commit 5f5e6e8
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
*/
package spoon.test.staticFieldAccess2;

import static spoon.testing.utils.ModelUtils.canBeBuilt;

import static org.junit.Assert.*;
import org.junit.Test;
import org.junit.jupiter.api.Test;

import spoon.Launcher;
import spoon.reflect.declaration.CtClass;
Expand All @@ -28,6 +25,10 @@
import spoon.test.staticFieldAccess2.testclasses.ImplicitFieldReference;
import spoon.test.staticFieldAccess2.testclasses.ImplicitStaticFieldReference;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static spoon.testing.utils.ModelUtils.canBeBuilt;

public class ImplicitStaticFieldReferenceTest
{
private static final boolean expectImplicit = false;
Expand Down

0 comments on commit 5f5e6e8

Please sign in to comment.