Skip to content

Commit

Permalink
test: migrate ExecutableFactoryTest to JUnit 5 (#4522)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 17, 2022
1 parent 81f18e3 commit 3606949
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/test/java/spoon/test/factory/ExecutableFactoryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
*/
package spoon.test.factory;

import org.junit.Test;

import java.util.List;

import org.junit.jupiter.api.Test;
import spoon.reflect.factory.ExecutableFactory;
import spoon.reflect.factory.Factory;
import spoon.reflect.reference.CtExecutableReference;
import spoon.reflect.reference.CtTypeReference;

import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static spoon.testing.utils.ModelUtils.createFactory;

public class ExecutableFactoryTest {
Expand Down

0 comments on commit 3606949

Please sign in to comment.