(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestArgNotSet(t *testing.T) { |
| 12 | arg := &StringArg{ |
| 13 | Name: "sa", |
| 14 | Value: "foo", |
| 15 | } |
| 16 | |
| 17 | require.Equal(t, "foo", arg.Get()) |
| 18 | } |
| 19 | |
| 20 | func TestArgsMaxNotSet(t *testing.T) { |
| 21 | arg := &StringArgs{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…