Craft\ImportServiceTest::testRowShouldThrowExceptionWhenTypeUnknown PHP 메소드

testRowShouldThrowExceptionWhenTypeUnknown() 공개 메소드

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