emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 08:56:13 +0200
changeset 264 d60370059c3c
parent 241 b6a67364aff7
permissions -rw-r--r--
Changing headers to GPLv3
jtulach@155
     1
/*
jaroslav@264
     2
 * Quoridor server and related libraries
jaroslav@264
     3
 * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@155
     4
 *
jaroslav@264
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@264
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@264
     7
 * the Free Software Foundation, either version 3 of the License.
jtulach@155
     8
 *
jaroslav@264
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@264
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@264
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@264
    12
 * GNU General Public License for more details.
jtulach@155
    13
 *
jaroslav@264
    14
 * You should have received a copy of the GNU General Public License
jaroslav@264
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@264
    16
 * If not, see http://www.gnu.org/licenses/.
jtulach@155
    17
 */
jtulach@153
    18
package cz.xelfi.quoridor.emailer
jtulach@153
    19
jtulach@153
    20
import org.junit._
jtulach@153
    21
import Assert._
jtulach@153
    22
jtulach@153
    23
@Test
jtulach@155
    24
class MainTest {
jtulach@153
    25
    @Test
jtulach@154
    26
    def testCheckLazyPlayers() = {
jtulach@241
    27
      val arr = new Array[String](0)
jtulach@240
    28
      /*
jtulach@240
    29
      arr(0) = "http://quoridor.xelfi.cz/api/"
jtulach@240
    30
      arr(1) = ""
jtulach@240
    31
      arr(2) = ""
jtulach@240
    32
      arr(3) = "print"
jtulach@241
    33
      */
jtulach@240
    34
      Main.main(arr)
jtulach@154
    35
    }
jtulach@153
    36
}
jtulach@153
    37
jtulach@153
    38