(t *testing.T)
| 46 | } |
| 47 | |
| 48 | func TestEmptyString(t *testing.T) { |
| 49 | tabulate := Create([][]string{STRING_ARRAY, EMPTY_ARRAY}) |
| 50 | tabulate.SetHeaders(HEADERS) |
| 51 | tabulate.SetEmptyString("None") |
| 52 | assert.Equal(t, tabulate.Render("grid"), readTable("_tests/test_empty_element")) |
| 53 | } |
| 54 | |
| 55 | func TestMaxColWidth(t *testing.T) { |
| 56 | // TODO |
nothing calls this directly
no test coverage detected
searching dependent graphs…