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.
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@153
    10
    def testOK() = assertTrue(true)
jtulach@153
    11
jtulach@153
    12
//    @Test
jtulach@153
    13
//    def testKO() = assertTrue(false)
jtulach@153
    14
jtulach@153
    15
}
jtulach@153
    16
jtulach@153
    17