Changeset 1022:567f392d1d2e in lemon-0.x for src/test
- Timestamp:
- 11/28/04 17:30:10 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1412
- Location:
- src/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/test/graph_test.cc
r989 r1022 30 30 checkConcept<BaseExtendableGraphComponent, BaseExtendableGraphComponent >(); 31 31 checkConcept<BaseErasableGraphComponent, BaseErasableGraphComponent >(); 32 checkConcept<BaseClearableGraphComponent, BaseClearableGraphComponent >();33 32 34 33 checkConcept<IterableGraphComponent, IterableGraphComponent >(); -
src/test/undir_graph_test.cc
r962 r1022 17 17 typedef UndirGraphExtender<ListGraphBase> UndirListGraphBase; 18 18 19 function_requires< BaseIterableUndirGraphConcept<UndirListGraphBase> >();20 21 19 typedef IterableUndirGraphExtender< 22 20 AlterableUndirGraphExtender<UndirListGraphBase> > IterableUndirListGraph; 23 21 24 function_requires< IterableUndirGraphConcept<IterableUndirListGraph> >(); 22 typedef MappableUndirGraphExtender<IterableUndirListGraph> 23 MappableUndirListGraph; 24 25 typedef ErasableUndirGraphExtender< 26 ClearableUndirGraphExtender< 27 ExtendableUndirGraphExtender<MappableUndirListGraph> > > Graph; 28 29 checkConcept<BaseIterableUndirGraphConcept, Graph>(); 30 checkConcept<IterableUndirGraphConcept, Graph>(); 31 checkConcept<MappableUndirGraphConcept, Graph>(); 32 33 checkConcept<UndirGraph, Graph>(); 34 checkConcept<ErasableUndirGraph, Graph>(); 25 35 26 36 return 0;
Note: See TracChangeset
for help on using the changeset viewer.