(t *testing.T)
| 653 | } |
| 654 | |
| 655 | func TestParseField_WhenValueIsEmpty(t *testing.T) { |
| 656 | result, err := parseField("", second) |
| 657 | assert.Nil(t, result, "result must not have been returned") |
| 658 | assert.NotNil(t, err, "an error must have been occurred") |
| 659 | assert.Equal(t, "value must not be empty", err.Error()) |
| 660 | } |
nothing calls this directly
no test coverage detected