(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestPosition(t *testing.T) { |
| 12 | expected := position.NewPosition(1, 1, 1, 1) |
| 13 | for _, n := range nodes { |
| 14 | n.SetPosition(expected) |
| 15 | actual := n.GetPosition() |
| 16 | assert.DeepEqual(t, expected, actual) |
| 17 | } |
| 18 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…