src/test/graph_utils_test.cc
author klao
Fri, 05 Nov 2004 00:31:49 +0000
changeset 962 1a770e9f80b2
child 977 48962802d168
permissions -rw-r--r--
Undirect graph implementation.
Not yet done, untested.
     1 // -*- c++ -*-
     2 
     3 #include <iostream>
     4 #include <vector>
     5 
     6 #include <lemon/list_graph.h>
     7 #include <lemon/smart_graph.h>
     8 #include <lemon/full_graph.h>
     9 
    10 #include "test_tools.h"
    11 #include "graph_utils_test.h"
    12 
    13 
    14 using namespace lemon;
    15 
    16 
    17 int main() {
    18   ///\file
    19   { // checking list graph
    20     checkGraphCounters<ListGraph>();
    21   }
    22   { // checking smart graph
    23     checkGraphCounters<SmartGraph>();
    24   }
    25 
    26   std::cout << __FILE__ ": All tests passed.\n";
    27 
    28   return 0;
    29 }