Sha256: 25f60468a88225192daf86cc7eaa281cd6897f036435cf73f3ccb2101a44d8ea
Contents?: true
Size: 814 Bytes
Versions: 300
Compression:
Stored size: 814 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
300 entries across 300 versions & 1 rubygems