diff -r d8475431bbbb -r 8e85e6bbefdf src/test/graph_utils_test.cc --- a/src/test/graph_utils_test.cc Sat May 21 21:04:57 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -// -*- c++ -*- - -#include -#include - -#include - -#include -#include -#include - -#include "test_tools.h" -#include "graph_utils_test.h" - - -using namespace lemon; - - -int main() { - ///\file - { // checking list graph - checkGraphCounters(); - } - { // checking smart graph - checkGraphCounters(); - } - { - int num = 5; - FullGraph fg(num); - check(countNodes(fg) == num, "FullGraph: wrong node number."); - check(countEdges(fg) == num*num, "FullGraph: wrong edge number."); - } - - std::cout << __FILE__ ": All tests passed.\n"; - - return 0; -}