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 Monolog\Logger;
use Psr\SimpleCache\CacheInterface; use Psr\SimpleCache\CacheInterface;
define('APP_DIR', __DIR__); if ( ! defined('APP_DIR'))
define('TEMPLATE_DIR', APP_DIR . '/templates'); {
define('APP_DIR', __DIR__);
define('TEMPLATE_DIR', APP_DIR . '/templates');
}
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// Setup DI container // Setup DI container

View File

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

View File

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

View File

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