/** * @todo Implement testDetect(). */ public function testDetectFail() { $this->assertFalse($this->object->detect('data/unit.false')); }
/** * @todo Implement testDetect(). */ public function testFileNotExist() { $this->setExpectedException('InvalidArgumentException'); $this->object->detect(__DIR__ . '/../../../data/unit.false'); }