(t *testing.T)
| 110 | } |
| 111 | |
| 112 | func TestRunArrayUnionToRuns(t *testing.T) { |
| 113 | arrayArg := newArrayContainerRange(0, 10) |
| 114 | runArg := newRunContainer16Range(11, 65535) |
| 115 | intervals, cardMinusOne := runArrayUnionToRuns(runArg, arrayArg) |
| 116 | assert.Equal(t, uint16(65535), cardMinusOne) |
| 117 | assert.Equal(t, []interval16{{start: 0, length: 65535}}, intervals) |
| 118 | } |
| 119 | |
| 120 | func TestRleRunIterator16(t *testing.T) { |
| 121 | t.Run("RunIterator16 unit tests for next, hasNext, and peekNext should pass", func(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…