(t *testing.T)
| 282 | } |
| 283 | |
| 284 | func TestSignature_Equal(t *testing.T) { |
| 285 | t.Parallel() |
| 286 | s1 := getSignature() |
| 287 | s2 := getSignature() |
| 288 | if !s1.equal(s2) { |
| 289 | t.Fatal("equal") |
| 290 | } |
| 291 | s2.State = "foo" |
| 292 | if s1.equal(s2) { |
| 293 | t.Fatal("inequal") |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | func TestSignature_Similar(t *testing.T) { |
| 298 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…