(t *testing.T)
| 191 | } |
| 192 | |
| 193 | func TestEmptyOid(t *testing.T) { |
| 194 | t.Parallel() |
| 195 | _, err := NewOid("") |
| 196 | if err == nil || !IsErrorCode(err, ErrorCodeGeneric) { |
| 197 | t.Fatal("Should have returned invalid error") |
| 198 | } |
| 199 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…