Fakerino\Test\DataSource\File\FileTest::testFileReadLineNotFoundException PHP Method

testFileReadLineNotFoundException() public method

    public function testFileReadLineNotFoundException()
    {
        $this->setExpectedException('Fakerino\\DataSource\\File\\Exception\\FileLineNotFoundException');
        $this->file = new File($this->testFile);
        $this->file->readLine(100);
    }