(t *testing.T)
| 23 | } |
| 24 | |
| 25 | func TestEditorSetText(t *testing.T) { |
| 26 | b := core.NewBody() |
| 27 | NewEditor(b).Buffer.SetString("Hello, world!") |
| 28 | b.AssertRender(t, "set-text") |
| 29 | } |
| 30 | |
| 31 | func TestEditorSetLanguage(t *testing.T) { |
| 32 | b := core.NewBody() |
nothing calls this directly
no test coverage detected