-
-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
129 changed files
with
1,783 additions
and
1,671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* this file is part of magerun | ||
* | ||
* @author Tom Klingenberg <https://github.com/ktomk> | ||
*/ | ||
|
||
namespace N98\Magento\Application; | ||
|
||
use N98\Magento\Command\TestCase; | ||
use Symfony\Component\Console\Output\NullOutput; | ||
|
||
class ConfigurationLoaderTest extends TestCase | ||
final class ConfigurationLoaderTest extends TestCase | ||
{ | ||
/** | ||
* @test | ||
*/ | ||
public function creation() | ||
public function testCreation() | ||
{ | ||
$loader = new ConfigurationLoader([], false, new NullOutput()); | ||
self::assertInstanceOf(__NAMESPACE__ . '\\ConfigurationLoader', $loader); | ||
$configurationLoader = new ConfigurationLoader([], false, new NullOutput()); | ||
$this->assertInstanceOf(__NAMESPACE__ . '\\ConfigurationLoader', $configurationLoader); | ||
} | ||
} |
Oops, something went wrong.