Sha256: 38eb25926a2ddccc6046dbcdefb9a2695376f0ba461e9acd0dc56bb7a7478268
Contents?: true
Size: 909 Bytes
Versions: 115
Compression:
Stored size: 909 Bytes
Contents
using NUnit.Framework; [TestFixture] public class ComplementTest { [Test] public void Rna_complement_of_cytosine_is_guanine() { Assert.That(Complement.OfDna("C"), Is.EqualTo("G")); } [Ignore("Remove to run test")] [Test] public void Rna_complement_of_guanine_is_cytosine() { Assert.That(Complement.OfDna("G"), Is.EqualTo("C")); } [Ignore("Remove to run test")] [Test] public void Rna_complement_of_thymine_is_adenine() { Assert.That(Complement.OfDna("T"), Is.EqualTo("A")); } [Ignore("Remove to run test")] [Test] public void Rna_complement_of_adenine_is_uracil() { Assert.That(Complement.OfDna("A"), Is.EqualTo("U")); } [Ignore("Remove to run test")] [Test] public void Rna_complement() { Assert.That(Complement.OfDna("ACGTGGTCTTAA"), Is.EqualTo("UGCACCAGAAUU")); } }
Version data entries
115 entries across 115 versions & 1 rubygems