Test application updates

p4#: 22353
This commit is contained in:
Magne Sjaastad 2013-09-08 11:53:22 +02:00
parent f0777bb8ac
commit 7edac904d3
2 changed files with 7 additions and 1 deletions

View File

@ -47,5 +47,6 @@ RimWellPathImport* TestTools::createMockObject()
wellPathImport->regions.push_back(regionB); wellPathImport->regions.push_back(regionB);
wellPathImport->utmFilterMode = RimWellPathImport::UTM_FILTER_PROJECT;
return wellPathImport; return wellPathImport;
} }

View File

@ -69,9 +69,14 @@ int main(int argc, char *argv[])
wellPathImportObject->east = east; wellPathImportObject->east = east;
wellPathImportObject->west = west; wellPathImportObject->west = west;
RiuWellImportWizard wizard(wsAddress, destinationFolder, wellPathImportObject); QString username("admin");
QString password("resinsight");
RiuWellImportWizard wizard(wsAddress, destinationFolder, wellPathImportObject);
wizard.setCredentials(username, password);
wizard.show(); wizard.show();
return app.exec(); return app.exec();
} }