Ignore:
Timestamp:
09/04/12 17:15:28 (12 years ago)
Author:
sherbold
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-usageprofiles-test/src/test/java/de/ugoe/cs/quest/usageprofiles/TrieBasedModelTest.java

    r553 r766  
    267267        } 
    268268 
    269         @Test(expected = java.security.InvalidParameterException.class) 
     269        @Test(expected = java.lang.IllegalArgumentException.class) 
    270270        public void testTrieBasedModel_2() throws Exception { 
    271271                int markovOrder = -1; 
     
    275275        } 
    276276 
    277         @Test(expected = java.security.InvalidParameterException.class) 
     277        @Test(expected = java.lang.IllegalArgumentException.class) 
    278278        public void testTrieBasedModel_3() throws Exception { 
    279279                int markovOrder = 2; 
     
    377377        } 
    378378 
    379         @Test(expected = java.security.InvalidParameterException.class) 
     379        @Test(expected = java.lang.IllegalArgumentException.class) 
    380380        public void testGenerateSequences_3() throws Exception { 
    381381                int markovOrder = 2; 
     
    423423        } 
    424424 
    425         @Test(expected = java.security.InvalidParameterException.class) 
     425        @Test(expected = java.lang.IllegalArgumentException.class) 
    426426        public void testGenerateValidSequences_2() throws Exception { 
    427427                int markovOrder = 2; 
     
    570570        } 
    571571         
    572         @Test(expected = java.security.InvalidParameterException.class) 
     572        @Test(expected = java.lang.IllegalArgumentException.class) 
    573573        public void testTrain_3() throws Exception { 
    574574                int markovOrder = 2; 
     
    595595        } 
    596596 
    597         @Test(expected = java.security.InvalidParameterException.class) 
     597        @Test(expected = java.lang.IllegalArgumentException.class) 
    598598        public void testUpdate_2() throws Exception { 
    599599                int markovOrder = 2; 
Note: See TracChangeset for help on using the changeset viewer.