Skip to content
This repository has been archived by the owner on Mar 2, 2020. It is now read-only.

Commit

Permalink
Remove: debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
springto committed May 20, 2019
1 parent 47e1dcd commit b91e764
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,6 @@ public void testGenerateTestsWithMutExConstraint() {

// Expect 3 tests should be generated
Assert.assertEquals(3, testCases.size());

System.out.println(testCases.toString());

int numberOfInconsistentTests = 0;
for (JSONObject testCase : testCases) {
Expand Down Expand Up @@ -661,12 +659,9 @@ public void testContradictoryModelTestGeneration() {

// Expect 4 tests should be generated
Assert.assertEquals(4, testCases.size());

System.out.println(testCases.toString());

int numberOfInconsistentTests = 0;
for (JSONObject testCase : testCases) {
System.out.println(testCase.toString());
if (!testCase.getBoolean("consistent")) {
numberOfInconsistentTests++;
}
Expand Down

0 comments on commit b91e764

Please sign in to comment.