| 1 | <?php |
||
| 10 | abstract class Zookal_Mock_Test_Model_Mocks_Mage_AbstractPHPUnitTestCase extends EcomDev_PHPUnit_Test_Case |
||
|
|
|||
| 11 | { |
||
| 12 | protected $_class = null; |
||
| 13 | |||
| 14 | public function getInstance() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @test |
||
| 21 | */ |
||
| 22 | public function itShouldExist() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @test |
||
| 29 | */ |
||
| 30 | public function itShouldBeAnInstanceOfMocksAbstract() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | protected function _trickAutoloader() |
||
| 54 | } |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.