(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestNode_Start(t *testing.T) { |
| 10 | if !testutils.IsSingleTesting() { |
| 11 | return |
| 12 | } |
| 13 | |
| 14 | var node = NewNode() |
| 15 | node.Start() |
| 16 | } |
| 17 | |
| 18 | func TestNode_Test(t *testing.T) { |
| 19 | if !testutils.IsSingleTesting() { |
nothing calls this directly
no test coverage detected