INNER CODE UNIT · Go

Test_array

mb-14/gomarkov · helpers_test.go:68

func Test_array(t *testing.T) {
	type args struct {
		value string
		count int
	}
	tests := []struct {
		name string
		args args
		want []string
	}{
		// TODO: Add test cases.
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := array(tt.args.value, tt.args.count); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("array() = %v, want %v", got, tt.want)
			}
		})

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…