Sha256: ca869af086318e3a814bb20b4519f26fea6bca7a8f9352857575a9967839aa63
Contents?: true
Size: 469 Bytes
Versions: 117
Compression:
Stored size: 469 Bytes
Contents
package pangram import ( "testing" ) func TestPangram(t *testing.T) { for _, test := range testCases { if actual := IsPangram(test.input); actual != test.expected { t.Fatalf("FAIL: %s\nInput %q expected [%t], actual [%t]", test.description, test.input, test.expected, actual) } t.Logf("PASS: %s", test.description) } } func BenchmarkPangram(b *testing.B) { for i := 0; i < b.N; i++ { for _, test := range testCases { IsPangram(test.input) } } }
Version data entries
117 entries across 117 versions & 1 rubygems