Kraken\_Unit\Util\Buffer\BufferTest::testApiSearch_FindsProperIndex PHP Method

testApiSearch_FindsProperIndex() public method

    public function testApiSearch_FindsProperIndex()
    {
        $search = substr($this->initialString, 3, 3);
        $index = $this->buffer->search($search);
        $this->assertSame(3, $index);
        $this->assertFalse($this->buffer->search($this->appendString));
    }