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