visidor/src/test/java/cz/xelfi/quoridor/visidor/ViewerTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Aug 2009 17:58:05 +0200
changeset 45 ba37a52fef86
parent 29 e5e40fd406c1
child 91 786df32c496b
child 266 15fcdfc4cd4a
permissions -rw-r--r--
Adding one test method, so JUnit does not complain
     1 package cz.xelfi.quoridor.visidor;
     2 
     3 import junit.framework.Test;
     4 import junit.framework.TestCase;
     5 import junit.framework.TestSuite;
     6 
     7 /**
     8  * Unit test for simple App.
     9  */
    10 public class ViewerTest extends TestCase {
    11 
    12     public ViewerTest(String testName) {
    13         super(testName);
    14     }
    15 
    16     public static Test suite() {
    17         return new TestSuite(ViewerTest.class);
    18     }
    19 
    20     public void testEmpty() {
    21     }
    22 }