We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ce5e7 commit 814a0f6Copy full SHA for 814a0f6
dev/tests/integration/testsuite/Magento/Framework/Filesystem/Driver/FileTest.php
@@ -174,6 +174,18 @@ public function testFilePutWithoutContents(): void
174
$this->assertEquals(0, $this->driver->filePutContents($path, ''));
175
}
176
177
+ /**
178
+ * Delete a not existing file
179
+ *
180
+ * @return void
181
+ * @throws FileSystemException
182
+ */
183
+ public function testDeleteFileEdge(): void
184
+ {
185
+ $path = $this->absolutePath . 'foo/file_four.txt';
186
+ $this->assertEquals(true, $this->driver->deleteFile($path));
187
+ }
188
+
189
/**
190
* Remove generated directories.
191
*
0 commit comments