Sha256: 90e9a24425971db8b0633a6e2f46f08714e70373732ac7f4bf428a799d83464d
Contents?: true
Size: 602 Bytes
Versions: 116
Compression:
Stored size: 602 Bytes
Contents
package bob import "testing" const targetTestVersion = 3 func TestTestVersion(t *testing.T) { if testVersion != targetTestVersion { t.Fatalf("Found testVersion = %v, want %v", testVersion, targetTestVersion) } } func TestHeyBob(t *testing.T) { for _, tt := range testCases { actual := Hey(tt.input) if actual != tt.expected { msg := ` ALICE (%s): %q BOB: %s Expected Bob to respond: %s` t.Fatalf(msg, tt.description, tt.input, actual, tt.expected) } } } func BenchmarkBob(b *testing.B) { for _, tt := range testCases { for i := 0; i < b.N; i++ { Hey(tt.input) } } }
Version data entries
116 entries across 116 versions & 1 rubygems