Skip to content

Commit

Permalink
test: migrate UnicodeBugTest to JUnit 5 (#4553)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 23, 2022
1 parent 99c7063 commit bfe7f7a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/test/java/spoon/test/literal/UnicodeBugTest.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
package spoon.test.literal;

import org.junit.Test;
import spoon.Launcher;
import spoon.processing.AbstractProcessor;
import spoon.reflect.CtModel;
import spoon.reflect.code.CtBinaryOperator;
import spoon.reflect.code.CtCodeElement;
import spoon.reflect.code.CtLiteral;
import spoon.reflect.declaration.CtField;
import spoon.Launcher;
import spoon.processing.AbstractProcessor;
import spoon.reflect.visitor.filter.TypeFilter;
import spoon.reflect.CtModel;
import spoon.support.compiler.VirtualFile;
import org.junit.jupiter.api.Test;


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

// bug case kindly provided by @Banbury
// in https://github.com/INRIA/spoon/issues/3203
Expand Down

0 comments on commit bfe7f7a

Please sign in to comment.