Commit a2b6028e authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Pas de test unitaire dans cette bib

parent f5e5c963
Loading
Loading
Loading
Loading

phpunit.xml

deleted100644 → 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.php

deleted100644 → 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());
    }
}