testing1/alcohol_test2.scala
changeset 144 716042628398
parent 128 166bb9b6b20a
equal deleted inserted replaced
143:11396c17cd8b 144:716042628398
       
     1 
       
     2 import io.Source
       
     3 import scala.util._
       
     4 
       
     5 val file_population_test = "population.csv"
       
     6 val file_alcohol_test = "alcohol.csv"
       
     7 
       
     8 
       
     9 def get_csv_file_test(file: String) : List[String] = 
       
    10   Source.fromFile(file)("ISO-8859-1").getLines.toList
       
    11 
       
    12 val alcs_test = get_csv_file_test(file_alcohol_test)
       
    13 val pops_test = get_csv_file_test(file_population_test)
       
    14 
       
    15 assert(CW6b.process_alcs(alcs_test.drop(1))(0) == ("Afghanistan", 0.0))
       
    16 
       
    17 assert(CW6b.process_pops(pops_test.drop(1))("Micronesia") == 104015)