for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Foundry\Tests\Functional;
use Zenstruck\Foundry\Tests\Fixtures\Factories\ODM\PostFactory;
/**
* @author Kevin Bond <[email protected]>
*/
final class ODMProxyTest extends ProxyTest
{
protected function setUp(): void
if (false === \getenv('MONGO_URL')) {
self::markTestSkipped('doctrine/odm not enabled.');
}
protected function postFactoryClass(): string
return PostFactory::class;
protected function registryServiceId(): string
return 'doctrine_mongodb';