testing1/alcohol_test2.scala
changeset 279 14bf4e478534
parent 278 0c2481cd8b1c
child 280 a057dc4457fc
--- a/testing1/alcohol_test2.scala	Tue Oct 29 09:54:52 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-
-import io.Source
-import scala.util._
-
-val file_population_test = "population.csv"
-val file_alcohol_test = "alcohol.csv"
-
-
-def get_csv_file_test(file: String) : List[String] = 
-  Source.fromFile(file)("ISO-8859-1").getLines.toList
-
-val alcs_test = get_csv_file_test(file_alcohol_test)
-val pops_test = get_csv_file_test(file_population_test)
-
-assert(CW6b.process_alcs(alcs_test.drop(1))(0) == ("Afghanistan", 0.0))
-
-assert(CW6b.process_pops(pops_test.drop(1))("Micronesia") == 104015)