* @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingGhostGenerator * @group Coverage */ class LazyLoadingGhostGeneratorTest extends AbstractProxyGeneratorTest { /** * {@inheritDoc} */ protected function getProxyGenerator() { return new LazyLoadingGhostGenerator(); } /** * {@inheritDoc} */ protected function getExpectedImplementedInterfaces() { return array('ProxyManager\\Proxy\\GhostObjectInterface'); } }