mageekguy\atoum\tests\units\test::testAddMandatoryClassExtension PHP Method

testAddMandatoryClassExtension() public method

    public function testAddMandatoryClassExtension()
    {
        $this->if($test = new notEmptyTest())->then->object($test->addMandatoryClassExtension($extension = uniqid()))->isIdenticalTo($test)->array($test->getMandatoryClassExtensions())->isEqualTo(array($extension))->object($test->addMandatoryClassExtension($otherExtension = uniqid()))->isIdenticalTo($test)->array($test->getMandatoryClassExtensions())->isEqualTo(array($extension, $otherExtension));
    }