(t *testing.T)
| 5 | ) |
| 6 | |
| 7 | func TestTableNewLTable(t *testing.T) { |
| 8 | tbl := newLTable(-1, -2) |
| 9 | errorIfNotEqual(t, 0, cap(tbl.array)) |
| 10 | |
| 11 | tbl = newLTable(10, 9) |
| 12 | errorIfNotEqual(t, 10, cap(tbl.array)) |
| 13 | } |
| 14 | |
| 15 | func TestTableLen(t *testing.T) { |
| 16 | tbl := newLTable(0, 0) |
nothing calls this directly
no test coverage detected
searching dependent graphs…