Changeset 766 for trunk/quest-core-usageprofiles-test/src/test/java/de
- Timestamp:
- 09/04/12 17:15:28 (12 years ago)
- Location:
- trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/DeterministicFiniteAutomatonTest.java
r553 r766 36 36 } 37 37 38 @Test(expected = java. security.InvalidParameterException.class)38 @Test(expected = java.lang.IllegalArgumentException.class) 39 39 public void testDeterministicFiniteAutomaton_2() throws Exception { 40 40 new DeterministicFiniteAutomaton(null); … … 106 106 } 107 107 108 @Test(expected = java. security.InvalidParameterException.class)108 @Test(expected = java.lang.IllegalArgumentException.class) 109 109 public void testGetProbability_5() throws Exception { 110 110 DeterministicFiniteAutomaton fixture = new DeterministicFiniteAutomaton( … … 120 120 } 121 121 122 @Test(expected = java. security.InvalidParameterException.class)122 @Test(expected = java.lang.IllegalArgumentException.class) 123 123 public void testGetProbability_6() throws Exception { 124 124 DeterministicFiniteAutomaton fixture = new DeterministicFiniteAutomaton( -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/FirstOrderMarkovModelTest.java
r553 r766 35 35 } 36 36 37 @Test(expected = java. security.InvalidParameterException.class)37 @Test(expected = java.lang.IllegalArgumentException.class) 38 38 public void testFirstOrderMarkovModel_2() throws Exception { 39 39 new FirstOrderMarkovModel(null); -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/HighOrderMarkovModelTest.java
r553 r766 49 49 } 50 50 51 @Test(expected = java. security.InvalidParameterException.class)51 @Test(expected = java.lang.IllegalArgumentException.class) 52 52 public void testHighOrderMarkovModel_3() throws Exception { 53 53 int maxOrder = 1; … … 57 57 } 58 58 59 @Test(expected = java. security.InvalidParameterException.class)59 @Test(expected = java.lang.IllegalArgumentException.class) 60 60 public void testHighOrderMarkovModel_4() throws Exception { 61 61 int maxOrder = -1; … … 188 188 } 189 189 190 @Test(expected = java. security.InvalidParameterException.class)190 @Test(expected = java.lang.IllegalArgumentException.class) 191 191 public void testGetProbability_8() throws Exception { 192 192 int markovOrder = 0; … … 204 204 } 205 205 206 @Test(expected = java. security.InvalidParameterException.class)206 @Test(expected = java.lang.IllegalArgumentException.class) 207 207 public void testGetProbability_9() throws Exception { 208 208 int markovOrder = 0; -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/IncompleteMemoryTest.java
r518 r766 27 27 } 28 28 29 @Test(expected = java. security.InvalidParameterException.class)29 @Test(expected = java.lang.IllegalArgumentException.class) 30 30 public void testIncompleteMemory_2() 31 31 throws Exception { -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/PredictionByPartialMatchTest.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 testPredictionByPartialMatch_2() throws Exception { 44 44 int markovOrder = -1; … … 48 48 } 49 49 50 @Test(expected = java. security.InvalidParameterException.class)50 @Test(expected = java.lang.IllegalArgumentException.class) 51 51 public void testPredictionByPartialMatch_3() throws Exception { 52 52 int markovOrder = 2; … … 72 72 } 73 73 74 @Test(expected = java. security.InvalidParameterException.class)74 @Test(expected = java.lang.IllegalArgumentException.class) 75 75 public void testPredictionByPartialMatch_5() throws Exception { 76 76 int markovOrder = -1; … … 81 81 } 82 82 83 @Test(expected = java. security.InvalidParameterException.class)83 @Test(expected = java.lang.IllegalArgumentException.class) 84 84 public void testPredictionByPartialMatch_6() throws Exception { 85 85 int markovOrder = 2; … … 90 90 } 91 91 92 @Test(expected = java. security.InvalidParameterException.class)92 @Test(expected = java.lang.IllegalArgumentException.class) 93 93 public void testPredictionByPartialMatch_7() throws Exception { 94 94 int markovOrder = 2; … … 99 99 } 100 100 101 @Test(expected = java. security.InvalidParameterException.class)101 @Test(expected = java.lang.IllegalArgumentException.class) 102 102 public void testPredictionByPartialMatch_8() throws Exception { 103 103 int markovOrder = 2; … … 125 125 } 126 126 127 @Test(expected = java. security.InvalidParameterException.class)127 @Test(expected = java.lang.IllegalArgumentException.class) 128 128 public void testPredictionByPartialMatch_10() throws Exception { 129 129 int markovOrder = -1; … … 135 135 } 136 136 137 @Test(expected = java. security.InvalidParameterException.class)137 @Test(expected = java.lang.IllegalArgumentException.class) 138 138 public void testPredictionByPartialMatch_11() throws Exception { 139 139 int markovOrder = 2; … … 145 145 } 146 146 147 @Test(expected = java. security.InvalidParameterException.class)147 @Test(expected = java.lang.IllegalArgumentException.class) 148 148 public void testPredictionByPartialMatch_12() throws Exception { 149 149 int markovOrder = 2; … … 155 155 } 156 156 157 @Test(expected = java. security.InvalidParameterException.class)157 @Test(expected = java.lang.IllegalArgumentException.class) 158 158 public void testPredictionByPartialMatch_13() throws Exception { 159 159 int markovOrder = 2; … … 165 165 } 166 166 167 @Test(expected = java. security.InvalidParameterException.class)167 @Test(expected = java.lang.IllegalArgumentException.class) 168 168 public void testPredictionByPartialMatch_14() throws Exception { 169 169 int markovOrder = 2; … … 175 175 } 176 176 177 @Test(expected = java. security.InvalidParameterException.class)177 @Test(expected = java.lang.IllegalArgumentException.class) 178 178 public void testPredictionByPartialMatch_15() throws Exception { 179 179 int markovOrder = 2; -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/TrieBasedModelTest.java
r553 r766 267 267 } 268 268 269 @Test(expected = java. security.InvalidParameterException.class)269 @Test(expected = java.lang.IllegalArgumentException.class) 270 270 public void testTrieBasedModel_2() throws Exception { 271 271 int markovOrder = -1; … … 275 275 } 276 276 277 @Test(expected = java. security.InvalidParameterException.class)277 @Test(expected = java.lang.IllegalArgumentException.class) 278 278 public void testTrieBasedModel_3() throws Exception { 279 279 int markovOrder = 2; … … 377 377 } 378 378 379 @Test(expected = java. security.InvalidParameterException.class)379 @Test(expected = java.lang.IllegalArgumentException.class) 380 380 public void testGenerateSequences_3() throws Exception { 381 381 int markovOrder = 2; … … 423 423 } 424 424 425 @Test(expected = java. security.InvalidParameterException.class)425 @Test(expected = java.lang.IllegalArgumentException.class) 426 426 public void testGenerateValidSequences_2() throws Exception { 427 427 int markovOrder = 2; … … 570 570 } 571 571 572 @Test(expected = java. security.InvalidParameterException.class)572 @Test(expected = java.lang.IllegalArgumentException.class) 573 573 public void testTrain_3() throws Exception { 574 574 int markovOrder = 2; … … 595 595 } 596 596 597 @Test(expected = java. security.InvalidParameterException.class)597 @Test(expected = java.lang.IllegalArgumentException.class) 598 598 public void testUpdate_2() throws Exception { 599 599 int markovOrder = 2; -
trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/TrieTest.java
r518 r766 59 59 } 60 60 61 @Test(expected = java. security.InvalidParameterException.class)61 @Test(expected = java.lang.IllegalArgumentException.class) 62 62 public void testTrie_3() throws Exception { 63 63 new Trie<String>(null); … … 159 159 } 160 160 161 @Test(expected = java. security.InvalidParameterException.class)161 @Test(expected = java.lang.IllegalArgumentException.class) 162 162 public void testGetChildCreate_2() throws Exception { 163 163 Trie<String> fixture = new Trie<String>();
Note: See TracChangeset
for help on using the changeset viewer.