for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/nnx-framework/container
* @author Malofeykin Andrey <[email protected]>
*/
namespace Nnx\Container\PhpUnit\Test;
use Nnx\Container\PhpUnit\TestData\TestPaths;
use Zend\Test\PHPUnit\Controller\AbstractHttpControllerTestCase;
use Nnx\Container\Module;
* Class ModuleTest
*
* @package Nnx\Container\PhpUnit\Test
class ModuleTest extends AbstractHttpControllerTestCase
{
* @return void
* @throws \Zend\Stdlib\Exception\LogicException
public function testLoadModule()
/** @noinspection PhpIncludeInspection */
$this->setApplicationConfig(
include TestPaths::getPathToDefaultAppConfig()
);
$this->assertModulesLoaded([Module::MODULE_NAME]);
}