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/Analyzer/FileCorruptionAnalyzerTest.php')
-rw-r--r--tests/Unit/Analyzer/FileCorruptionAnalyzerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Unit/Analyzer/FileCorruptionAnalyzerTest.php b/tests/Unit/Analyzer/FileCorruptionAnalyzerTest.php
index ff6fb00..e40fc71 100644
--- a/tests/Unit/Analyzer/FileCorruptionAnalyzerTest.php
+++ b/tests/Unit/Analyzer/FileCorruptionAnalyzerTest.php
@@ -70,7 +70,7 @@ class FileCorruptionAnalyzerTest extends TestCase
*/
public function testAnalyze($isCorrupted)
{
- $this->markTestSkipped('must be revisited.');
+ $this->markTestSkipped('getContent was removed.');
$file = $this->createMock(File::class);
$file->method('getContent')
->willReturn('test');
@@ -117,7 +117,7 @@ class FileCorruptionAnalyzerTest extends TestCase
*/
public function testIsCorrupted($data, $extension, $result)
{
- $this->markTestSkipped('must be revisited.');
+ $this->markTestSkipped('getContent was removed.');
$isCorrupted = self::getMethod('isCorrupted');
$node = $this->createMock(File::class);
@@ -135,7 +135,7 @@ class FileCorruptionAnalyzerTest extends TestCase
public function testIsCorruptedCatchException()
{
- $this->markTestSkipped('must be revisited.');
+ $this->markTestSkipped('getContent was removed.');
$isCorrupted = self::getMethod('isCorrupted');
$node = $this->createMock(File::class);