Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3995282
environmenttestspass.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 7, 12:33 AM
Size
558 B
Mime Type
text/x-c
Expires
Thu, Jul 9, 12:33 AM (4 h, 54 m)
Engine
blob
Format
Raw Data
Handle
271529
Attached To
rXR Xreate
environmenttestspass.cpp
View Options
/*
* environmenttestspass.cpp
*
* Created on: Nov 17, 2015
* Author: pgess
*/
#include <string>
#include <list>
void
EnvironmentTestsPass::run(){
list<string> arftefacts = solver->query("depends(env())");
//check artifacts
for (artefact: artifacts){
Function funcProbe = findProberForArtefact(artefact);
result = funcProbe->run();
results->save(result);
}
for (artefact: artefacts){
if (results->getResult(artefact)){
Function funcProvider = findProviderForArtefact(artefact);
funcProvider->run();
}
}
}
Event Timeline
Log In to Comment