(t *testing.T)
| 159 | } |
| 160 | |
| 161 | func TestMultinodeDataPublishing(t *testing.T) { |
| 162 | if testing.Short() { |
| 163 | t.SkipNow() |
| 164 | return |
| 165 | } |
| 166 | |
| 167 | _, _, finish := setupMultiNodeTest("TestMultinodeDataPublishing") |
| 168 | defer finish() |
| 169 | |
| 170 | scenarioDataPublish(t) |
| 171 | scenarioDataUnlabeledPublish(t) |
| 172 | scenarioDataTracksPublishingUponJoining(t) |
| 173 | } |
| 174 | |
| 175 | func TestMultiNodeJoinAfterClose(t *testing.T) { |
| 176 | if testing.Short() { |
nothing calls this directly
no test coverage detected