Mongolid\ManagerTest::testShouldNotGetDataMapperForUnknownEntities PHP Method

testShouldNotGetDataMapperForUnknownEntities() public method

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