public function __construct(string $endpointNamespace, EntityManager $em)
 {
     parent::__construct($endpointNamespace);
     $this->entityManager = $em;
 }
 public function testGettingSupportedEndpointsWithNoneBecauseVersion()
 {
     $namespaceEndpointFactory = new NamespaceEndpointFactory($this->namespace);
     $this->assertEmpty($namespaceEndpointFactory->getSupportedEndpoints($this->version . "2"));
 }