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
     1 package cz.xelfi.quoridor.emailer
     2 
     3 import org.junit._
     4 import Assert._
     5 
     6 @Test
     7 class AppTest {
     8 
     9     @Test
    10     def testCheckLazyPlayers() = {
    11       Main.main(null)
    12     }
    13 
    14 //    @Test
    15 //    def testKO() = assertTrue(false)
    16 
    17 }
    18 
    19