| author | pdated | 
| Sat, 16 Jun 2018 20:54:58 +0100 | |
| changeset 184 | 19b1e01054f6 | 
| parent 65 | f59e70e2ad82 | 
| permissions | -rw-r--r-- | 
| 64 | 1  | 
//println("starting test now")
 | 
2  | 
||
3  | 
||
| 65 | 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)  |