D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Filename :
DataProviderSkippedTest.php
back
Copy
<?php class DataProviderSkippedTest extends PHPUnit_Framework_TestCase { /** * @dataProvider skippedTestProviderMethod */ public function testSkipped($a, $b, $c) { $this->assertTrue(true); } /** * @dataProvider providerMethod */ public function testAdd($a, $b, $c) { $this->assertEquals($c, $a + $b); } public function skippedTestProviderMethod() { $this->markTestSkipped('skipped'); return [ [0, 0, 0], [0, 1, 1], ]; } public static function providerMethod() { return [ [0, 0, 0], [0, 1, 1], ]; } }