AppserverIo\Appserver\Core\Api\AppServiceTest::testUndeployInvalidUuid PHP Method

testUndeployInvalidUuid() public method

If we can determine if a passed UUID is an invalid one
public testUndeployInvalidUuid ( ) : null
return null
    public function testUndeployInvalidUuid()
    {
        $mockContainer = $this->getMock('\\AppserverIo\\Appserver\\Core\\Api\\Node\\ContainerNodeInterface');
        $mockExtractor = $this->getMock('\\AppserverIo\\Appserver\\Core\\Interfaces\\ExtractorInterface');
        $mockExtractor->expects($this->never())->method('unflagArchive');
        $this->appService->injectExtractor($mockExtractor);
        $appNode = new AppNode(__METHOD__, '/opt/appserver/targetwebapp');
        $this->appService->undeploy($mockContainer, $appNode->getUuid());
    }