SetSize is used to change the terminal size.
(size Coord)
| 154 | |
| 155 | // SetSize is used to change the terminal size. |
| 156 | func (mt *mockTerm) SetSize(size Coord) { |
| 157 | mt.mb.SetSize(size) |
| 158 | mt.em.ResizeEvent(size) |
| 159 | } |
| 160 | |
| 161 | // Backend returns the backend for testing. |
| 162 | func (mt *mockTerm) Backend() MockBackend { |
nothing calls this directly
no test coverage detected