Fix tests
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2020-08-21 13:07:00 -04:00
parent 386938c75f
commit 41ca3a2d86
4 changed files with 11 additions and 9 deletions

View File

@ -32,8 +32,11 @@ use Monolog\Handler\RotatingFileHandler;
use Monolog\Logger;
use Psr\SimpleCache\CacheInterface;
define('APP_DIR', __DIR__);
define('TEMPLATE_DIR', APP_DIR . '/templates');
if ( ! defined('APP_DIR'))
{
define('APP_DIR', __DIR__);
define('TEMPLATE_DIR', APP_DIR . '/templates');
}
// -----------------------------------------------------------------------------
// Setup DI container

View File

@ -252,12 +252,12 @@ class FormGeneratorTest extends AnimeClientTestCase {
{
parent::setUp();
$this->generator = new FormGenerator($this->container);
$this->generator = FormGenerator::new($this->container);
}
public function testSanity(): void
{
$generator = new FormGenerator($this->container);
$generator = FormGenerator::new($this->container);
$this->assertInstanceOf(FormGenerator::class, $generator);
}

View File

@ -26,12 +26,12 @@ class MenuGeneratorTest extends AnimeClientTestCase {
public function setUp(): void {
parent::setUp();
$this->generator = new MenuGenerator($this->container);
$this->generator = MenuGenerator::new($this->container);
}
public function testSanity()
{
$generator = new MenuGenerator($this->container);
$generator = MenuGenerator::new($this->container);
$this->assertInstanceOf(MenuGenerator::class, $generator);
}

View File

@ -40,9 +40,8 @@ return static function(array $config_array = []) {
});
// Create Html helper Object
$container->set('html-helper', static function() {
return (new HelperLocatorFactory)->newInstance();
});
$container->set('html-helper', fn() => (new HelperLocatorFactory)->newInstance());
$container->set('component-helper', fn() => (new HelperLocatorFactory)->newInstance());
return $container;
};