(t *testing.T)
| 14 | } |
| 15 | |
| 16 | func TestTable(t *testing.T) { |
| 17 | b := NewBody() |
| 18 | NewTable(b).SetSlice(&[]language{{"Go", 10}, {"Python", 5}}) |
| 19 | b.AssertRender(t, "table/basic") |
| 20 | } |
| 21 | |
| 22 | func TestTableReadOnly(t *testing.T) { |
| 23 | b := NewBody() |
nothing calls this directly
no test coverage detected