(t *testing.T)
| 30 | } |
| 31 | |
| 32 | func TestButtonTextIcon(t *testing.T) { |
| 33 | b := NewBody() |
| 34 | NewButton(b).SetText("Download").SetIcon(icons.Download) |
| 35 | b.AssertRender(t, "button/text-icon") |
| 36 | } |
| 37 | |
| 38 | func TestButtonClick(t *testing.T) { |
| 39 | b := NewBody() |
nothing calls this directly
no test coverage detected