Craft\ImportServiceTest::testRowShouldThrowExceptionWhenTypeUnknown PHP Method

testRowShouldThrowExceptionWhenTypeUnknown() public method

    public function testRowShouldThrowExceptionWhenTypeUnknown()
    {
        $row = 1;
        $settings = array('map' => array(), 'type' => 'TypeDoesNotExists');
        $data = array();
        $service = new ImportService();
        $service->row($row, $data, $settings);
    }