diff --git a/tests/TestCase/TestSuite/TestCaseTest.php b/tests/TestCase/TestSuite/TestCaseTest.php index 17369b5a9bb..7f576bef8f1 100644 --- a/tests/TestCase/TestSuite/TestCaseTest.php +++ b/tests/TestCase/TestSuite/TestCaseTest.php @@ -1,9 +1,5 @@ markTestIncomplete('Cannot work until fixtures are fixed'); - $test = new FixturizedTestCase('testFixtureLoadOnDemand'); $test->autoFixtures = false; $manager = $this->getMock('Cake\TestSuite\Fixture\FixtureManager'); @@ -195,47 +189,12 @@ public function testLoadFixturesOnDemand() { $this->assertEquals(0, $result->errorCount()); } -/** - * testLoadFixturesOnDemand - * - * @return void - */ - public function testUnoadFixturesAfterFailure() { - $this->markTestIncomplete('Cannot work until fixtures are fixed'); - $test = new FixturizedTestCase('testFixtureLoadOnDemand'); - $test->autoFixtures = false; - $manager = $this->getMock('Cake\TestSuite\Fixture\FixtureManager'); - $manager->fixturize($test); - $test->fixtureManager = $manager; - $manager->expects($this->once())->method('loadSingle'); - $result = $test->run(); - $this->assertEquals(0, $result->errorCount()); - } - -/** - * testThrowException - * - * @return void - */ - public function testThrowException() { - $this->markTestIncomplete('Cannot work until fixtures are fixed'); - $test = new FixturizedTestCase('testThrowException'); - $test->autoFixtures = false; - $manager = $this->getMock('Cake\TestSuite\Fixture\FixtureManager'); - $manager->fixturize($test); - $test->fixtureManager = $manager; - $manager->expects($this->once())->method('unload'); - $result = $test->run(); - $this->assertEquals(1, $result->errorCount()); - } - /** * testSkipIf * * @return void */ public function testSkipIf() { - $this->markTestIncomplete('Cannot work until fixtures are fixed'); $test = new FixturizedTestCase('testSkipIfTrue'); $result = $test->run(); $this->assertEquals(1, $result->skippedCount());