From ae80307029eaefc0379b32e9ad635be29ee6714e Mon Sep 17 00:00:00 2001 From: Matthias Held Date: Fri, 14 Sep 2018 21:04:24 +0200 Subject: Extend tests Signed-off-by: Matthias Held --- tests/Unit/StorageWrapperTest.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') 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; } -- cgit v1.2.3