Skip to content

Commit

Permalink
test: migrate ElasticsearchStackoverflowTest to JUnit 5 (#4473)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 12, 2022
1 parent a50797a commit 2595d9d
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
*/
package spoon.test.reference;

import org.junit.Test;

import java.util.List;

import org.junit.jupiter.api.Test;
import spoon.Launcher;
import spoon.reflect.CtModel;
import spoon.reflect.declaration.CtType;
Expand All @@ -26,12 +29,10 @@
import spoon.reflect.visitor.CtScanner;
import spoon.reflect.visitor.filter.TypeFilter;

import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class ElasticsearchStackoverflowTest {

Expand Down

0 comments on commit 2595d9d

Please sign in to comment.