eZ\Publish\Core\Repository\Tests\Service\Mock\UrlAliasTest::testRemoveAliasesThrowsInvalidArgumentException PHP 메소드

testRemoveAliasesThrowsInvalidArgumentException() 공개 메소드

Test for the removeAliases() method.
    public function testRemoveAliasesThrowsInvalidArgumentException()
    {
        $aliasList = array(new UrlAlias(array('isCustom' => false)));
        $mockedService = $this->getPartlyMockedURLAliasServiceService();
        $mockedService->removeAliases($aliasList);
    }
UrlAliasTest