Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4866710
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
Sun, Sep 13, 5:28 PM
Size
558 B
Mime Type
text/x-c
Expires
Tue, Sep 15, 5:28 PM (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
293063
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