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
path: root/tests
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-09-14 22:04:24 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-09-14 22:04:24 +0300
commitae80307029eaefc0379b32e9ad635be29ee6714e (patch)
tree3360391bea36093f72702e699cf5b370d9e60fbe /tests
parentc1f439e6b3b713ecdfa600dbb44f53dd5d768230 (diff)
Extend tests
Signed-off-by: Matthias Held <matthias.held@uni-konstanz.de>
Diffstat (limited to 'tests')
-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;
}