Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/ContainerTest.php')
-rw-r--r--tests/unit/ContainerTest.php16
1 files changed, 7 insertions, 9 deletions
diff --git a/tests/unit/ContainerTest.php b/tests/unit/ContainerTest.php
index aee3a87f..122c7325 100644
--- a/tests/unit/ContainerTest.php
+++ b/tests/unit/ContainerTest.php
@@ -1,7 +1,10 @@
-
<?php
/**
+ * PHPPgAdmin 6.1.3
+ */
+
+/**
* PHPPgAdmin vv6.0.0-RC8-16-g13de173f.
*
* @internal
@@ -16,7 +19,7 @@ class ContainerTest extends \Codeception\Test\Unit
*/
protected $tester;
- protected $container;
+ protected ?\PHPPgAdmin\ContainerUtils $container;
public function testContainerValidity(): void
{
@@ -52,13 +55,8 @@ class ContainerTest extends \Codeception\Test\Unit
protected function _before(): void
{
- $Helper = $this->getModule('\Helper\Unit');
- $this->container = $Helper::getContainer();
+ $this->container = containerInstance();
self::$BASE_PATH = $this->container->BASE_PATH;
- $this->container->misc->setNoDBConnection(true);
- }
-
- protected function _after(): void
- {
+ $this->container->get('misc')->setNoDBConnection(true);
}
}