Loading phpunit.xmldeleted 100644 → 0 +0 −15 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" colors="true"> <testsuites> <testsuite name="unit"> <directory>./tests/ExempleTest</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> </phpunit> No newline at end of file test/ExempleTest/ModuleTest.phpdeleted 100644 → 0 +0 −24 Original line number Diff line number Diff line <?php namespace ExempleTest; use Exemple\MultipageForm\Module; use PHPUnit\Framework\TestCase; class ModuleTest extends TestCase { /** * @var Module */ private $module; protected function setUp() { $this->module = new Module(); } public function testCanGetArrayConfig() { $this->assertIsArray($this->module->getConfig()); } } Loading
phpunit.xmldeleted 100644 → 0 +0 −15 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" colors="true"> <testsuites> <testsuite name="unit"> <directory>./tests/ExempleTest</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> </phpunit> No newline at end of file
test/ExempleTest/ModuleTest.phpdeleted 100644 → 0 +0 −24 Original line number Diff line number Diff line <?php namespace ExempleTest; use Exemple\MultipageForm\Module; use PHPUnit\Framework\TestCase; class ModuleTest extends TestCase { /** * @var Module */ private $module; protected function setUp() { $this->module = new Module(); } public function testCanGetArrayConfig() { $this->assertIsArray($this->module->getConfig()); } }