/** * @test */ public function fileWorks() { $file = new File(__DIR__ . '/filetest.txt'); $this->assertEquals(__DIR__ . '/filetest.txt', $file->filePath()); $this->assertEquals('txt', $file->format()); }
/** * @param string $filePath */ public function __construct($filePath) { $this->file = new File($filePath); $this->format = new PhotoFormat($this->file->format()); }