|
1 /* |
1 def myassert(cond : => Boolean) = { |
2 def myassert(cond : => Boolean) = { |
2 try { |
3 try { |
3 assert(cond) |
4 assert(cond) |
4 } catch { |
5 } catch { |
5 case _ : Throwable => System.exit(1) |
6 case _ : Throwable => System.exit(1) |
6 } |
7 } |
7 } |
8 } |
|
9 */ |
8 |
10 |
9 |
11 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2000, 100) == 100) |
10 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2000, 100) == 100) |
12 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2001, 100) == 27) |
11 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2001, 100) == 27) |
13 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2002, 100) == 42) |
12 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2002, 100) == 42) |
14 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2003, 100) == 27) |
13 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2003, 100) == 27) |
15 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2004, 100) == 38) |
14 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2004, 100) == 38) |
16 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2005, 100) == 113) |
15 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2005, 100) == 113) |
17 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2006, 100) == 254) |
16 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2006, 100) == 254) |
18 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2007, 100) == 349) |
17 myassert(investment(List("GOOG", "AAPL", "BIDU"), 2000 to 2007, 100) == 349) |
19 assert(CW6b.investment(List("GOOG", "AAPL", "BIDU"), 1990 to 2017, 100) == 11504) |
18 myassert(investment(List("GOOG", "AAPL", "BIDU"), 1990 to 2017, 100) == 11504) |
|