test/graph_adaptor_test.cc
changeset 2231 06faf3f06d67
parent 2111 ea1fa1bc3f6d
child 2260 4274224f8a7d
     1.1 --- a/test/graph_adaptor_test.cc	Tue Oct 03 11:24:41 2006 +0000
     1.2 +++ b/test/graph_adaptor_test.cc	Tue Oct 03 11:46:39 2006 +0000
     1.3 @@ -22,11 +22,13 @@
     1.4  #include<lemon/smart_graph.h>
     1.5  #include<lemon/concept/graph.h>
     1.6  #include<lemon/concept/ugraph.h>
     1.7 +#include<lemon/concept/bpugraph.h>
     1.8  
     1.9  #include<lemon/list_graph.h>
    1.10  #include<lemon/full_graph.h>
    1.11  #include<lemon/graph_adaptor.h>
    1.12  #include<lemon/ugraph_adaptor.h>
    1.13 +#include<lemon/bpugraph_adaptor.h>
    1.14  
    1.15  #include"test/test_tools.h"
    1.16  #include"test/graph_test.h"
    1.17 @@ -75,6 +77,11 @@
    1.18  
    1.19      checkConcept<Graph, DirUGraphAdaptor<UGraph, 
    1.20        UGraph::UEdgeMap<bool> > >();
    1.21 +
    1.22 +    checkConcept<BpUGraph, BpUGraphAdaptor<BpUGraph> >();
    1.23 +
    1.24 +    checkConcept<BpUGraph, SwapBpUGraphAdaptor<BpUGraph> >();
    1.25 +
    1.26    }
    1.27    std::cout << __FILE__ ": All tests passed.\n";
    1.28