Sha256: b0e4fd43befb055cabe9fcc66288775356275fb91fd65790b43b9b08f193026a
Contents?: true
Size: 815 Bytes
Versions: 96
Compression:
Stored size: 815 Bytes
Contents
<?php require "rna-transcription.php"; class ComplementTest extends \PHPUnit_Framework_TestCase { public function testTranscribesGuanineToCytosine() { $this->assertSame('G', toRna('C')); } public function testTranscribesCytosineToGuanine() { $this->markTestSkipped(); $this->assertSame('C', toRna('G')); } public function testTranscribesThymineToAdenine() { $this->markTestSkipped(); $this->assertSame('A', toRna('T')); } public function testTranscribesAdenineToUracil() { $this->markTestSkipped(); $this->assertSame('U', toRna('A')); } public function testTranscribesAllOccurencesOne() { $this->markTestSkipped(); $this->assertSame('UGCACCAGAAUU', toRna('ACGTGGTCTTAA')); } }
Version data entries
96 entries across 96 versions & 1 rubygems