Kraken\_Unit\Util\Buffer\BufferTest::testOffsetGet PHP Метод

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

public testOffsetGet ( )
    public function testOffsetGet()
    {
        $this->assertSame(substr($this->initialString, 0, 1), $this->buffer->offsetGet(0));
        $this->assertSame(substr($this->initialString, -1, 1), $this->buffer->offsetGet(strlen($this->initialString) - 1));
    }