(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestDataIdentifier(t *testing.T) { |
| 63 | t.Parallel() |
| 64 | |
| 65 | dataObj := newData(t, nil, nil) |
| 66 | |
| 67 | one := dataObj.Identifier() |
| 68 | two := dataObj.Identifier() |
| 69 | |
| 70 | assertive.IsEqual(t, one, two) |
| 71 | assertive.HasPrefix(t, one, "testdataidentifier") |
| 72 | |
| 73 | three := dataObj.Identifier("Some Add ∞ Funky∞Prefix") |
| 74 | assertive.HasPrefix(t, three, "testdataidentifier-some-add-funky-prefix") |
| 75 | } |
| 76 | |
| 77 | func TestDataIdentifierThatIsReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLong( |
| 78 | t *testing.T, |
nothing calls this directly
no test coverage detected
searching dependent graphs…