emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 26 Nov 2009 20:20:33 +0100
branchscala-emailer
changeset 154 d9d5376d5f23
parent 153 ac818c32c6e9
child 155 388a3511c433
permissions -rw-r--r--
Really trying to send the emails
jtulach@153
     1
package cz.xelfi.quoridor.emailer
jtulach@153
     2
jtulach@153
     3
import org.junit._
jtulach@153
     4
import Assert._
jtulach@153
     5
jtulach@153
     6
@Test
jtulach@153
     7
class AppTest {
jtulach@153
     8
jtulach@153
     9
    @Test
jtulach@154
    10
    def testCheckLazyPlayers() = {
jtulach@154
    11
      Main.main(null)
jtulach@154
    12
    }
jtulach@153
    13
jtulach@153
    14
//    @Test
jtulach@153
    15
//    def testKO() = assertTrue(false)
jtulach@153
    16
jtulach@153
    17
}
jtulach@153
    18
jtulach@153
    19