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

@ -110,8 +110,6 @@ HTML
public function testRegisterClientScript()
{
$this->expectNotToPerformAssertions();
$this->mockWebApplication();
$_SERVER['REQUEST_URI'] = 'http://example.com/';
@ -135,6 +133,8 @@ HTML
$form->field($model, 'name');
$form::end();
ob_get_clean();
$this->assertTrue(true);
}
/**