marking/drumb_test2.scala
author Christian Urban <urbanc@in.tum.de>
Sat, 21 Jan 2017 00:43:35 +0000
changeset 99 e10a9b2fd35a
parent 82 28c8e17ab83a
child 169 b37052895281
permissions -rw-r--r--
updated

//println("starting test now")

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

val urban_prices = List(List(Some(71.539941), None), 
                        List(Some(76.974614), None), 
                        List(Some(65.226685), Some(6.35)), 
                        List(Some(78.354649), Some(12.241)), 
                        List(Some(85.517645), Some(38.188)))

val urban_deltas = List(List(Some(0.07596697626574789), None), 
                        List(Some(-0.152620823795232), None), 
                        List(Some(0.20126676681483952), Some(0.9277165354330709)), 
                        List(Some(0.09141762603007778), Some(2.119679764725104)))


lazy val f = Future {
  //assert(get_deltas(urban_prices) == urban_deltas)
  assert (get_deltas(get_prices(List("IBM", "BIDU"), 2004 to 2008)) == urban_deltas)
}


Await.result(f, 180 second)