Mongolid\ManagerTest::testShouldNotGetDataMapperForUnknownEntities PHP Méthode

testShouldNotGetDataMapperForUnknownEntities() public méthode

    public function testShouldNotGetDataMapperForUnknownEntities()
    {
        // Arrange
        $manager = new Manager();
        // Assert
        $result = $manager->getMapper('Unknow');
        $this->assertNull($result);
    }