src/test/graph_utils_test.cc
author alpar
Tue, 09 Nov 2004 17:48:52 +0000
changeset 973 6a6f3ac07b20
child 977 48962802d168
permissions -rw-r--r--
- Add makeSnapshot()/rollBack() functionality
- Remove an unnecessary #include
     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 }