src/test/graph_utils_test.cc
changeset 946 c94ef40a22ce
child 977 48962802d168
equal deleted inserted replaced
-1:000000000000 0:57e68f002aff
       
     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 }