editor = Editor::new(); $this->row = Row::new($this->editor, '', 0); } public function testSanity(): void { $this->assertEquals(0, $this->row->size); $this->assertEquals(0, $this->row->rsize); $this->assertEmpty($this->row->chars); $this->assertEmpty($this->row->render); } }