emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 26 Nov 2009 20:06:56 +0100
branchscala-emailer
changeset 153 ac818c32c6e9
child 154 d9d5376d5f23
permissions -rw-r--r--
Scala version of an emailer. So far it finds the lazy players. It needs to send them email yet.
     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 testOK() = assertTrue(true)
    11 
    12 //    @Test
    13 //    def testKO() = assertTrue(false)
    14 
    15 }
    16 
    17