13 lines
229 B
Scala
13 lines
229 B
Scala
package akka.actor.ticket
|
|
|
|
import org.scalatest.WordSpec
|
|
import org.scalatest.matchers.MustMatchers
|
|
|
|
class Ticket001Spec extends WordSpec with MustMatchers {
|
|
|
|
"An XXX" should {
|
|
"do YYY" in {
|
|
1 must be (1)
|
|
}
|
|
}
|
|
}
|