Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: DataProviderTestDoxTest.php
<?php use PHPUnit\Framework\TestCase; class DataProviderTestDoxTest extends TestCase { /** * @dataProvider provider * @testdox Does something with */ public function testOne() { $this->assertTrue(true); } /** * @dataProvider provider */ public function testDoesSomethingElseWith() { $this->assertTrue(true); } public function provider() { return [ 'one' => [1], 'two' => [2] ]; } }