コード例 #1
0
ファイル: StreamTest.php プロジェクト: rusnak/Ext
 /**
  * @test
  */
 public function getUnreadBytesIsValidCount()
 {
     $count = 10;
     $this->_serverStream->write($this->_testString);
     $this->_clientStream->read($count);
     $this->assertEquals(strlen($this->_testString) - $count, $this->_clientStream->getUnreadBytes());
 }