Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/StorageWrapperTest.php')
-rw-r--r--tests/Unit/StorageWrapperTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Unit/StorageWrapperTest.php b/tests/Unit/StorageWrapperTest.php
index 05a4996..e45acf2 100644
--- a/tests/Unit/StorageWrapperTest.php
+++ b/tests/Unit/StorageWrapperTest.php
@@ -92,6 +92,10 @@ class StorageWrapperTest extends TestCase
$tests[] = ['file_get_contents', 'path2', Monitor::READ, false];
$tests[] = ['unlink', 'path1', Monitor::DELETE, true];
$tests[] = ['unlink', 'path2', Monitor::DELETE, false];
+ $tests[] = ['mkdir', 'path1', Monitor::CREATE, true];
+ $tests[] = ['mkdir', 'path2', Monitor::CREATE, false];
+ $tests[] = ['rmdir', 'path1', Monitor::DELETE, true];
+ $tests[] = ['rmdir', 'path2', Monitor::DELETE, false];
return $tests;
}