2016-05-13 02:26:52 +00:00
|
|
|
module Main exposing (..)
|
2016-03-17 01:36:38 +00:00
|
|
|
|
2016-03-17 01:38:35 +00:00
|
|
|
import ElmTest exposing (..)
|
2016-03-26 18:34:31 +00:00
|
|
|
import NucleotideCount exposing (nucleotideCounts, version)
|
2016-03-17 01:36:38 +00:00
|
|
|
|
2016-03-17 01:38:51 +00:00
|
|
|
|
2016-03-17 01:36:38 +00:00
|
|
|
tests : Test
|
2016-03-17 01:38:51 +00:00
|
|
|
tests =
|
|
|
|
suite
|
|
|
|
"NucleotideCount"
|
|
|
|
[ test
|
2016-03-26 18:34:31 +00:00
|
|
|
"the solution is for the correct version of the test"
|
|
|
|
(assertEqual 2 version)
|
|
|
|
, test
|
2016-03-17 01:38:51 +00:00
|
|
|
"empty dna strand has no nucleotides"
|
|
|
|
(assertEqual
|
2016-03-24 00:18:25 +00:00
|
|
|
{ a = 0, t = 0, c = 0, g = 0 }
|
2016-03-17 01:38:51 +00:00
|
|
|
(nucleotideCounts "")
|
|
|
|
)
|
|
|
|
, test
|
|
|
|
"repetitive-sequence-has-only-guanosine"
|
|
|
|
(assertEqual
|
2016-03-24 00:18:25 +00:00
|
|
|
{ a = 0, t = 0, c = 0, g = 8 }
|
2016-03-17 01:38:51 +00:00
|
|
|
(nucleotideCounts "GGGGGGGG")
|
|
|
|
)
|
|
|
|
, test
|
|
|
|
"counts all nucleotides"
|
|
|
|
(assertEqual
|
2016-03-24 00:18:25 +00:00
|
|
|
{ a = 20, t = 21, c = 12, g = 17 }
|
2016-03-17 01:38:51 +00:00
|
|
|
(nucleotideCounts "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC")
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
2016-03-17 01:36:38 +00:00
|
|
|
|
2016-05-13 02:26:52 +00:00
|
|
|
main : Program Never
|
|
|
|
main =
|
|
|
|
runSuite tests
|