Changeset 766 for trunk/quest-core-coverage-test/src/test/java
- Timestamp:
- 09/04/12 17:15:28 (12 years ago)
- Location:
- trunk/quest-core-coverage-test/src/test/java/de/ugoe/cs/quest/coverage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-coverage-test/src/test/java/de/ugoe/cs/quest/coverage/CoverageCalculatorObservedTest.java
r553 r766 44 44 } 45 45 46 @Test(expected = java. security.InvalidParameterException.class)46 @Test(expected = java.lang.IllegalArgumentException.class) 47 47 public void testCoverageCalculatorObserved_2() throws Exception { 48 48 int length = 2; … … 51 51 } 52 52 53 @Test(expected = java. security.InvalidParameterException.class)53 @Test(expected = java.lang.IllegalArgumentException.class) 54 54 public void testCoverageCalculatorObserved_3() throws Exception { 55 55 int length = 2; … … 58 58 } 59 59 60 @Test(expected = java. security.InvalidParameterException.class)60 @Test(expected = java.lang.IllegalArgumentException.class) 61 61 public void testCoverageCalculatorObserved_4() throws Exception { 62 62 int length = 0; … … 65 65 } 66 66 67 @Test(expected = java. security.InvalidParameterException.class)67 @Test(expected = java.lang.IllegalArgumentException.class) 68 68 public void testCoverageCalculatorObserved_5() throws Exception { 69 69 int length = -1; … … 160 160 } 161 161 162 @Test(expected = java. security.InvalidParameterException.class )162 @Test(expected = java.lang.IllegalArgumentException.class ) 163 163 public void testCoveragePossibleNew_3() throws Exception { 164 164 int length = 3; … … 191 191 } 192 192 193 @Test(expected = java. security.InvalidParameterException.class )193 @Test(expected = java.lang.IllegalArgumentException.class ) 194 194 public void testCoveragePossibleNewWeight_3() throws Exception { 195 195 int length = 3; -
trunk/quest-core-coverage-test/src/test/java/de/ugoe/cs/quest/coverage/CoverageCalculatorProcessTest.java
r553 r766 40 40 } 41 41 42 @Test(expected = java. security.InvalidParameterException.class)42 @Test(expected = java.lang.IllegalArgumentException.class) 43 43 public void testCoverageCalculatorProcess_2() throws Exception { 44 44 int length = 2; … … 47 47 } 48 48 49 @Test(expected = java. security.InvalidParameterException.class)49 @Test(expected = java.lang.IllegalArgumentException.class) 50 50 public void testCoverageCalculatorProcess_3() throws Exception { 51 51 int length = 2; … … 54 54 } 55 55 56 @Test(expected = java. security.InvalidParameterException.class)56 @Test(expected = java.lang.IllegalArgumentException.class) 57 57 public void testCoverageCalculatorProcess_4() throws Exception { 58 58 int length = 0; … … 61 61 } 62 62 63 @Test(expected = java. security.InvalidParameterException.class)63 @Test(expected = java.lang.IllegalArgumentException.class) 64 64 public void testCoverageCalculatorProcess_5() throws Exception { 65 65 int length = -1; … … 179 179 } 180 180 181 @Test(expected = java. security.InvalidParameterException.class)181 @Test(expected = java.lang.IllegalArgumentException.class) 182 182 public void testSetSequences_2() throws Exception { 183 183 int length = 2; -
trunk/quest-core-coverage-test/src/test/java/de/ugoe/cs/quest/coverage/SequenceToolsTest.java
r553 r766 55 55 } 56 56 57 @Test(expected=java. security.InvalidParameterException.class)57 @Test(expected=java.lang.IllegalArgumentException.class) 58 58 public void testContainedSubSequences_3() 59 59 throws Exception { … … 63 63 } 64 64 65 @Test(expected=java. security.InvalidParameterException.class)65 @Test(expected=java.lang.IllegalArgumentException.class) 66 66 public void testContainedSubSequences_4() 67 67 throws Exception { … … 129 129 } 130 130 131 @Test(expected = java. security.InvalidParameterException.class )131 @Test(expected = java.lang.IllegalArgumentException.class ) 132 132 public void testNumSequences_3() 133 133 throws Exception { … … 137 137 } 138 138 139 @Test(expected = java. security.InvalidParameterException.class )139 @Test(expected = java.lang.IllegalArgumentException.class ) 140 140 public void testNumSequences_4() 141 141 throws Exception {
Note: See TracChangeset
for help on using the changeset viewer.