This commit is contained in:
Casey Lee
2020-02-25 16:58:26 -08:00
parent 76ecede42e
commit 8696b42178
3 changed files with 9 additions and 8 deletions

View File

@@ -9,9 +9,9 @@ import (
func TestCartisianProduct(t *testing.T) {
assert := assert.New(t)
input := map[string][]interface{}{
"foo": []interface{}{1, 2, 3, 4},
"bar": []interface{}{"a", "b", "c"},
"baz": []interface{}{false, true},
"foo": {1, 2, 3, 4},
"bar": {"a", "b", "c"},
"baz": {false, true},
}
output := CartesianProduct(input)