(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestStringSliceTypeBool(t *testing.T) { |
| 86 | m := objx.Map{ |
| 87 | "bool": []bool{true, false}, |
| 88 | } |
| 89 | |
| 90 | assert.Equal(t, []string{"true", "false"}, m.Get("bool").StringSlice()) |
| 91 | } |
| 92 | |
| 93 | func TestStringSliceTypeInt(t *testing.T) { |
| 94 | m := objx.Map{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…