Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/11 12:21:05 (14 years ago)
Author:
bfarka
Message:

restructure of service project #1218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKBJavaConnector/HLOKBWebClient/src/test/java/at/hl/okb/wsclient/OKBClientTest.java

    r5229 r5242  
    11package at.hl.okb.wsclient;
    22
     3
     4import junit.framework.Assert;
    35
    46import org.junit.Test;
     
    1517      public void testGetPlatform()
    1618  {
    17       client.getPlatformId("ECJ");
     19      Assert.assertNotNull(client.getPlatformId("ECJ"));
    1820  }
    19 
     21 
     22  @Test
     23      public void testGetProblemClass()
     24  {
     25      Assert.assertNotNull(client.getProblemClassId("ECJ"));
     26  }
     27  @Test
     28  public void testGetAlgorithmClass()
     29  {
     30      Assert.assertNotNull(client.getAlgorithmClassId("ECJ"));
     31  }
     32 
    2033}
Note: See TracChangeset for help on using the changeset viewer.