Skip to content

Commit

Permalink
correct the list of tests for SEDMLExporterSBMLTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Nov 14, 2024
1 parent 9371a18 commit d34dc85
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,16 +326,7 @@ public static Collection<TestCase> testCases() {
!largeFileSet().contains(t) &&
!slowTestSet().contains(t);
Stream<TestCase> sbml_test_cases = Arrays.stream(VcmlTestSuiteFiles.getVcmlTestCases()).filter(skipFilter_SBML).map(fName -> new TestCase(fName, ModelFormat.SBML));
// return sbml_test_cases.collect(Collectors.toList());
return Arrays.asList(
new TestCase("biomodel_185577495.vcml", ModelFormat.SBML)
// new TestCase("biomodel_31523791.vcml", ModelFormat.SBML),
// new TestCase("biomodel_34855932.vcml", ModelFormat.SBML),
// new TestCase("biomodel_40882931.vcml", ModelFormat.SBML),
// new TestCase("biomodel_40883509.vcml", ModelFormat.SBML),
// new TestCase("biomodel_65311813.vcml", ModelFormat.SBML),
// new TestCase("biomodel_155016832.vcml", ModelFormat.SBML)
);
return sbml_test_cases.collect(Collectors.toList());
}

@ParameterizedTest
Expand Down

0 comments on commit d34dc85

Please sign in to comment.