(t *testing.T)
| 315 | } |
| 316 | |
| 317 | func TestRevTreeGetHistory(t *testing.T) { |
| 318 | history, err := testmap.getHistory("3-three") |
| 319 | assert.True(t, err == nil) |
| 320 | assert.Equal(t, []string{"3-three", "2-two", "1-one"}, history) |
| 321 | } |
| 322 | |
| 323 | func TestRevTreeGetLeaves(t *testing.T) { |
| 324 | leaves := testmap.GetLeaves() |
nothing calls this directly
no test coverage detected