1. Go to this page and download the library: Download n98/magerun2-test-framework library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
n98 / magerun2-test-framework example snippets
namespace Acme\Example\Command;
use N98\Magento\Command\PHPUnit\TestCase;
use Symfony\Component\Console\Tester\CommandTester;
class FooCommandTest extends TestCase
{
/**
* @test
*/
public function testOutput()
{
/**
* Load module config for unit test. In this case the relative
* path from current test case.
*/
$this->loadConfigFile(__DIR__ . '/../../n98-magerun2.yaml');
/**
* Test if command could be found
*/
$command = $this->getApplication()->find('foo');
/**
* Call command
*/
$commandTester = new CommandTester($command);
$commandTester->execute(
[
]
);
}
}
namespace Acme\Example\Command\CodeGenerator;
use N98\Magento\Command\Developer\Console\PHPUnit\TestCase;
class MakeSomethingCommandTest extends TestCase
{
/**
* @test
*/
public function testGenerator()
{
$command = new MakeSomethingCommand();
$commandTester = $this->createCommandTester($command);
$command->setCurrentModuleName('Acme_Example');
$writerMock = $this->mockWriterFileWriteFileAssertion(
__DIR__ . '/_files/ExampleSomething.php'
);
$command->setCurrentModuleDirectoryWriter($writerMock);
$commandTester->execute([
/* pass your parameters */
]);
}
}