tracks/scala/exercises/protein-translation/src/test/scala/ProteinTranslationTest.scala in trackler-2.2.1.30 vs tracks/scala/exercises/protein-translation/src/test/scala/ProteinTranslationTest.scala in trackler-2.2.1.31

- old
+ new

@@ -1,7 +1,8 @@ import org.scalatest.{FunSuite, Matchers} +/** @version created manually **/ class ProteinTranslationTest extends FunSuite with Matchers { test("Identifies methionine codon") { ProteinTranslation.translate("AUG") should be(Seq("Methionine")) } @@ -54,6 +55,6 @@ test("Stops translation of longest strand") { pending ProteinTranslation.translate("UGGUGUUAUUAAUGGUUU") should be(Seq("Tryptophan", "Cysteine", "Tyrosine")) } -} \ No newline at end of file +}