Symfony\Component\Filesystem\Tests\FilesystemTest::testTouchCreatesEmptyFile PHP Method

testTouchCreatesEmptyFile() public method

    public function testTouchCreatesEmptyFile()
    {
        $file = $this->workspace . DIRECTORY_SEPARATOR . '1';
        $this->filesystem->touch($file);
        $this->assertFileExists($file);
    }
FilesystemTest