visidor/src/test/java/cz/xelfi/quoridor/visidor/ViewerTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 09:46:43 +0200
changeset 266 15fcdfc4cd4a
parent 45 ba37a52fef86
permissions -rw-r--r--
Using maven-license-plugin and updating all missing headers
jaroslav@266
     1
/**
jaroslav@266
     2
 * Quoridor server and related libraries
jaroslav@266
     3
 * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@266
     4
 *
jaroslav@266
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@266
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@266
     7
 * the Free Software Foundation, either version 3 of the License.
jaroslav@266
     8
 *
jaroslav@266
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@266
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@266
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@266
    12
 * GNU General Public License for more details.
jaroslav@266
    13
 *
jaroslav@266
    14
 * You should have received a copy of the GNU General Public License
jaroslav@266
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@266
    16
 * If not, see http://www.gnu.org/licenses/.
jaroslav@266
    17
 */
jaroslav@266
    18
jtulach@29
    19
package cz.xelfi.quoridor.visidor;
jtulach@25
    20
jtulach@25
    21
import junit.framework.Test;
jtulach@25
    22
import junit.framework.TestCase;
jtulach@25
    23
import junit.framework.TestSuite;
jtulach@25
    24
jtulach@25
    25
/**
jtulach@25
    26
 * Unit test for simple App.
jtulach@25
    27
 */
jtulach@29
    28
public class ViewerTest extends TestCase {
jtulach@29
    29
jtulach@29
    30
    public ViewerTest(String testName) {
jtulach@29
    31
        super(testName);
jtulach@25
    32
    }
jtulach@25
    33
jtulach@29
    34
    public static Test suite() {
jtulach@29
    35
        return new TestSuite(ViewerTest.class);
jtulach@25
    36
    }
jaroslav@45
    37
jaroslav@45
    38
    public void testEmpty() {
jaroslav@45
    39
    }
jtulach@25
    40
}