marking/re1e_test.scala
author Christian Urban <urbanc@in.tum.de>
Mon, 12 Mar 2018 12:11:50 +0000
changeset 173 2de1f79dedf0
parent 92 cfff88de2ff5
permissions -rw-r--r--
updated


import scala.concurrent._
import scala.concurrent.duration._
import ExecutionContext.Implicits.global
import scala.language.postfixOps 



lazy val f = Future {
  assert(replace("aa".% | "bb", "aabbbaaaaaaabaaaaabbaaaabb" , "c") == "ccbcabcaccc")
  assert(replace("aa".% | "bb", "abba" , "") == "aa")
}

Await.result(f, 120 second)