assertTrue(true); } /** * @test * @dataProvider shouldBeFalseDataProvider * @group trueOnly */ public function shouldBeFalse($testData) { $this->assertFalse(false); } public function shouldBeTrueDataProvider() { //throw new Exception("Can't create the data"); return array( array(true), array(false) ); } public function shouldBeFalseDataProvider() { throw new Exception("Can't create the data"); return array( array(true), array(false) ); } }