(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestButtonIcon(t *testing.T) { |
| 27 | b := NewBody() |
| 28 | NewButton(b).SetIcon(icons.Download) |
| 29 | b.AssertRender(t, "button/icon") |
| 30 | } |
| 31 | |
| 32 | func TestButtonTextIcon(t *testing.T) { |
| 33 | b := NewBody() |
nothing calls this directly
no test coverage detected