コード例 #1
0
ファイル: ReadlineTest.php プロジェクト: clue/stdio-react
 /**
  * @depends testCursorCellAccountsForDoubleWidthCharacters
  * @param Readline $readline
  */
 public function testCursorCellObeysCustomEchoAsterisk(Readline $readline)
 {
     $readline->setEcho('*');
     $this->assertEquals(3, $readline->getCursorPosition());
     $this->assertEquals(3, $readline->getCursorCell());
 }