Kraken\_Unit\Util\Buffer\BufferIteratorTest::testApiRemove PHP Метод

testApiRemove() публичный Метод

public testApiRemove ( )
    public function testApiRemove()
    {
        $this->iterator->remove();
        $this->assertSame(substr($this->initialString, 1), (string) $this->buffer);
        $this->iterator->next();
        $this->iterator->remove();
        $this->assertSame(substr($this->initialString, 2), (string) $this->buffer);
    }