for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Andreas Penz.
* Date: 24.06.14
* Time: 17:58
*/
class LimeSoda_LiveGuard_Test_Config_ConfigTests
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
extends EcomDev_PHPUnit_Test_Case_Config
{
* @test
public function testCodePool()
$this->assertModuleCodePool('community');
}
public function testModuleIsActive()
$this->assertModuleIsActive();
public function testModuleVersion()
$this->assertModuleVersion('1.0.2');
public function testModuleDependencies()
$this->assertModuleDepends('LimeSoda_EnvironmentConfiguration');
public function testHelperAliases()
$this->assertHelperAlias(
'limesoda_liveguard',
'LimeSoda_LiveGuard_Helper_Data'
);
public function testObserverDefined()
$this->assertEventObserverDefined(
'global', 'controller_front_init_before', 'limesoda_liveguard/observer', 'controllerFrontInitBefore'
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.