gotdd/repeat_test.go

19 lines
285 B
Go
Raw Permalink Normal View History

2022-01-20 04:20:12 +00:00
package main
import "testing"
func TestRepeat(t *testing.T) {
repeated := Repeat("a")
expected := "aaaaa"
if repeated != expected {
t.Errorf("Expected %q but got %q", expected, repeated)
}
}
func BenchmarkRepeat(b *testing.B) {
for i := 0; i < b.N; i++ {
Repeat("a")
}
}