changeset 281 | 87b9e3e2c1a7 |
parent 280 | a057dc4457fc |
child 282 | ec9773fe1dc0 |
280:a057dc4457fc | 281:87b9e3e2c1a7 |
---|---|
1 //println("starting test now") |
|
2 |
|
3 |
|
4 import scala.concurrent._ |
|
5 import scala.concurrent.duration._ |
|
6 import ExecutionContext.Implicits.global |
|
7 import scala.language.postfixOps |
|
8 |
|
9 lazy val f = Future { |
|
10 assert(query_company("YHOO") == ("1996-07-24", "2000-01-03")) |
|
11 assert(query_company("IBM") == ("1962-06-14", "2013-03-14")) |
|
12 assert(query_company("BIDU") == ("2006-02-07", "2014-11-11")) |
|
13 } |
|
14 |
|
15 Await.result(f, 120 second) |