Skip to content

Commit

Permalink
add ignore annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed Nov 8, 2024
1 parent 04473cd commit 60946b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@
import java.nio.file.Paths;
import org.apache.commons.io.FileUtils;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/** Base class for all core tests. */
@Ignore
@RunWith(JUnit4.class)
public abstract class AnnotatorBaseCoreTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@
import java.nio.file.Paths;
import java.util.Arrays;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@Ignore
@RunWith(JUnit4.class)
public abstract class AnnotatorScannerBaseTest<T extends Display> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@
import java.nio.file.Path;
import java.nio.file.Paths;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@Ignore
@RunWith(JUnit4.class)
public class BaseInjectorTest {

Expand Down

0 comments on commit 60946b6

Please sign in to comment.