diff -r 66dd225ca128 -r 86b42ec55f3e src/test/graph_wrapper_test.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/test/graph_wrapper_test.cc Fri Sep 17 12:23:09 2004 +0000 @@ -0,0 +1,38 @@ +#include +#include +#include +#include +#include +#include + +#include"test/test_tools.h" +#include"test/graph_test.h" + +/** +\file +This test makes consistency checks of graph wrappers. + +\todo More extensive tests are needed +*/ + +using namespace hugo; + + +//Compile SmartGraph +typedef SmartGraph Graph; +typedef GraphWrapper GW; +template void checkCompileStaticGraph(GW &); +//template void checkCompileGraphFindEdge(SmartGraph &); + +//Compile SymSmartGraph +typedef RevGraphWrapper RevGW; +template void checkCompileStaticGraph(RevGW &); +//template void checkCompileGraphFindEdge(SymSmartGraph &); + + +int main() +{ + std::cout << __FILE__ ": All tests passed.\n"; + + return 0; +}