(t *testing.T)
| 53 | } |
| 54 | |
| 55 | func TestTextFieldPasswordClick(t *testing.T) { |
| 56 | b := NewBody() |
| 57 | tf := NewTextField(b).SetTypePassword().SetText("my password") |
| 58 | b.AssertRender(t, "text-field/password-click", func() { |
| 59 | tf.trailingIconButton.Send(events.Click) |
| 60 | }) |
| 61 | } |
| 62 | |
| 63 | func TestTextFieldClear(t *testing.T) { |
| 64 | b := NewBody() |
nothing calls this directly
no test coverage detected