Skip to content

Commit 1755785

Browse files
committed
Disable tests
1 parent d369ff7 commit 1755785

23 files changed

Lines changed: 49 additions & 2 deletions

src/test/java/BadVDiffTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
import java.io.IOException;
2020
import java.nio.file.Path;
21+
import org.junit.jupiter.api.Disabled;
2122

23+
@Disabled
2224
public class BadVDiffTest {
2325
private static final Path resDir = Constants.RESOURCE_DIR.resolve("badvdiff");
2426

src/test/java/CPPParserTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
import static org.variantsync.diffdetective.util.fide.FormulaUtils.var;
1717
import static org.variantsync.diffdetective.util.fide.FormulaUtils.negate;
1818

19+
import org.junit.jupiter.api.Disabled;
20+
@Disabled
1921
public class CPPParserTest {
2022
private static record TestCase(String formula, Node expectedFormula, AnnotationType expectedType) {
2123
public TestCase(String formula, Node expectedFormula) {

src/test/java/Constants.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import java.nio.file.Path;
22

3+
import org.junit.jupiter.api.Disabled;
4+
5+
@Disabled
36
public final class Constants {
47
public static final Path RESOURCE_DIR = Path.of("src", "test", "resources");
58
}

src/test/java/EditClassesTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
import java.io.IOException;
1111
import java.nio.file.Path;
1212

13+
import org.junit.jupiter.api.Disabled;
14+
@Disabled
1315
public class EditClassesTest {
1416
private final static Path testDir = Constants.RESOURCE_DIR.resolve("patterns");
1517

src/test/java/ExportTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import static org.junit.jupiter.api.Assertions.fail;
2020

21+
@Disabled
2122
public class ExportTest {
2223
private final static Path RESOURCE_DIR = Path.of("src/test/resources/serialize");
2324

src/test/java/FeatureIDETest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
import java.util.HashMap;
1717
import java.util.Map;
1818

19+
import org.junit.jupiter.api.Disabled;
20+
@Disabled
1921
public class FeatureIDETest {
2022
private static Node createTrue() {
2123
return new True();

src/test/java/FixTrueFalseTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
import static org.variantsync.diffdetective.util.fide.FormulaUtils.negate;
1616
import static org.variantsync.diffdetective.util.fide.FormulaUtils.or;
1717

18+
import org.junit.jupiter.api.Disabled;
19+
@Disabled
1820
public class FixTrueFalseTest {
1921
private record TestCase(Node formula, Node expectedResult) {}
2022

src/test/java/GitDifferTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626

2727
import static org.junit.jupiter.api.Assertions.fail;
2828

29+
import org.junit.jupiter.api.Disabled;
30+
@Disabled
2931
public class GitDifferTest {
3032
private final static Path testDir = Constants.RESOURCE_DIR.resolve("diffs").resolve("differ");
3133
private final static Path REPOS_DIR = Constants.RESOURCE_DIR.resolve("repos");

src/test/java/JPPParserTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
import static org.variantsync.diffdetective.util.fide.FormulaUtils.var;
3232

3333
// Test cases for a parser of https://www.slashdev.ca/javapp/
34+
import org.junit.jupiter.api.Disabled;
35+
@Disabled
3436
public class JPPParserTest {
3537
private record TestCase<Input, Expected>(Input input, Expected expected) {
3638
}

src/test/java/LineGraphTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
/**
3131
* For testing the import of a line graph.
3232
*/
33+
import org.junit.jupiter.api.Disabled;
34+
@Disabled
3335
public class LineGraphTest {
3436
private final static LineGraphImportOptions<DiffLinesLabel> IMPORT_OPTIONS = new LineGraphImportOptions<>(
3537
GraphFormat.VARIATION_DIFF,

0 commit comments

Comments
 (0)