| Conditions | 4 |
| Total Lines | 8 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package internal |
||
| 9 | func TestEach(t *testing.T) { |
||
| 10 | testData := getEachTestData() |
||
| 11 | for key, test := range testData { |
||
| 12 | erra := test.err |
||
| 13 | errb := Each(test.inputValue, test.mapFunction) |
||
| 14 | if erra == nil { |
||
| 15 | if errb != nil { |
||
| 16 | t.Errorf("Convert.ToUint64 does not works expected\ncase %s: error: %s", key, errb.Error()) |
||
| 17 | } |
||
| 52 |