Skip to content

Commit

Permalink
test: migrate FileSystemFolderTest to junit 5 (#4419)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 7, 2022
1 parent f98453a commit c8c3b4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/spoon/test/api/FileSystemFolderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,20 @@
*/
package spoon.test.api;

import static org.junit.Assert.assertTrue;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.List;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import spoon.Launcher;
import spoon.SpoonException;
import spoon.compiler.SpoonFolder;
import spoon.support.compiler.FileSystemFolder;

import static org.junit.jupiter.api.Assertions.assertTrue;

public class FileSystemFolderTest {

@Test
Expand Down

0 comments on commit c8c3b4a

Please sign in to comment.