(t *testing.T)
| 25 | ) |
| 26 | |
| 27 | func TestCellIDFromFace(t *testing.T) { |
| 28 | for face := range 6 { |
| 29 | fpl := CellIDFromFacePosLevel(face, 0, 0) |
| 30 | f := CellIDFromFace(face) |
| 31 | if fpl != f { |
| 32 | t.Errorf("CellIDFromFacePosLevel(%d, 0, 0) != CellIDFromFace(%d), got %v wanted %v", face, face, f, fpl) |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | func TestCellIDSentinelRangeMinMax(t *testing.T) { |
| 38 | s := SentinelCellID |
nothing calls this directly
no test coverage detected
searching dependent graphs…