WarningTest.php 295 B

123456789101112131415
  1. <?php
  2. class WarningTest extends \Codeception\Test\Unit
  3. {
  4. /**
  5. * @dataProvider dependentProvider
  6. */
  7. public function testWarningInvalidDataProvider($a)
  8. {
  9. $this->assertTrue(true);
  10. }
  11. public function dependentProvider()
  12. {
  13. throw new Exception;
  14. }
  15. }