(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestSimpleString(t *testing.T) { |
| 82 | tabulate := Create([][]string{STRING_ARRAY, STRING_ARRAY, EMPTY_ARRAY}) |
| 83 | tabulate.SetHeaders(HEADERS) |
| 84 | tabulate.SetEmptyString("None") |
| 85 | assert.Equal(t, tabulate.Render("simple"), readTable("_tests/simple_strings")) |
| 86 | } |
| 87 | |
| 88 | func TestSimpleMixed(t *testing.T) { |
| 89 | tabulate := Create([][]interface{}{MIXED_ARRAY, MIXED_ARRAY}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…