Remove test of data providers, and replace expectNotToPerformAssertions() to assertTrue(true) for code coverage.

This commit is contained in:
Wilmer Arambula
2024-03-21 09:56:54 -03:00
parent 4b1281618a
commit 3357e64ee6
10 changed files with 27 additions and 34 deletions

View File

@ -359,8 +359,6 @@ class FileHelperTest extends TestCase
*/
public function testCopyDirWithSameName()
{
$this->expectNotToPerformAssertions();
$this->createFileStructure([
'data' => [],
'data-backup' => [],
@ -370,6 +368,8 @@ class FileHelperTest extends TestCase
$this->testFilePath . DIRECTORY_SEPARATOR . 'data',
$this->testFilePath . DIRECTORY_SEPARATOR . 'data-backup'
);
$this->assertTrue(true);
}
public function testRemoveDirectory()