-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from AkashKumar7902/Developer
217 add duplication check for test suites and test cases
- Loading branch information
Showing
5 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
...n/java/org/openmainframeproject/cobolcheck/exceptions/TestCaseAlreadyExistsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.openmainframeproject.cobolcheck.exceptions; | ||
|
||
public class TestCaseAlreadyExistsException extends RuntimeException { | ||
public TestCaseAlreadyExistsException(String message) { | ||
super(message); | ||
} | ||
public TestCaseAlreadyExistsException(Throwable cause) { | ||
super(cause); | ||
} | ||
public TestCaseAlreadyExistsException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
.../java/org/openmainframeproject/cobolcheck/exceptions/TestSuiteAlreadyExistsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.openmainframeproject.cobolcheck.exceptions; | ||
|
||
public class TestSuiteAlreadyExistsException extends RuntimeException { | ||
public TestSuiteAlreadyExistsException(String message) { | ||
super(message); | ||
} | ||
public TestSuiteAlreadyExistsException(Throwable cause) { | ||
super(cause); | ||
} | ||
public TestSuiteAlreadyExistsException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters