author | ladanyi |
Mon, 08 Nov 2004 08:37:41 +0000 | |
changeset 965 | 1e16b8dac159 |
child 977 | 48962802d168 |
permissions | -rw-r--r-- |
1 // -*- c++ -*-
3 #include <iostream>
4 #include <vector>
6 #include <lemon/list_graph.h>
7 #include <lemon/smart_graph.h>
8 #include <lemon/full_graph.h>
10 #include "test_tools.h"
11 #include "graph_utils_test.h"
14 using namespace lemon;
17 int main() {
18 ///\file
19 { // checking list graph
20 checkGraphCounters<ListGraph>();
21 }
22 { // checking smart graph
23 checkGraphCounters<SmartGraph>();
24 }
26 std::cout << __FILE__ ": All tests passed.\n";
28 return 0;
29 }