(t *testing.T)
| 123 | } |
| 124 | |
| 125 | func TestGridString(t *testing.T) { |
| 126 | tabulate := Create([][]string{STRING_ARRAY, STRING_ARRAY, EMPTY_ARRAY}) |
| 127 | tabulate.SetHeaders(HEADERS) |
| 128 | tabulate.SetEmptyString("None") |
| 129 | assert.Equal(t, tabulate.Render("grid"), readTable("_tests/grid_strings")) |
| 130 | } |
| 131 | |
| 132 | func TestGridMixed(t *testing.T) { |
| 133 | tabulate := Create([][]interface{}{MIXED_ARRAY, MIXED_ARRAY}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…