Sha256: ded683c9b92a14de0c03267688f66e8c8f758dc4fae62463739ebd95735eed78
Contents?: true
Size: 399 Bytes
Versions: 45
Compression:
Stored size: 399 Bytes
Contents
package strand import "testing" func TestRNATranscription(t *testing.T) { for _, test := range rnaTests { if actual := ToRNA(test.input); actual != test.expected { t.Errorf("ToRNA(%s): %s, expected %s", test.input, actual, test.expected) } } } func BenchmarkRNATranscription(b *testing.B) { for i := 0; i < b.N; i++ { for _, test := range rnaTests { ToRNA(test.input) } } }
Version data entries
45 entries across 45 versions & 1 rubygems