#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; }