Changeset 2143 for trunk/test/matrix_weighted_test.cc
- Timestamp:
- Jan 15, 2010, 3:12:56 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/matrix_weighted_test.cc
r2119 r2143 33 33 void test_constructor_const(test::Suite& suite); 34 34 void test_constructor_matrix(test::Suite& suite); 35 void test_concepts(test::Suite& suite); 35 36 void test_swap(test::Suite& suite); 36 37 … … 43 44 test_constructor_matrix(suite); 44 45 test_swap(suite); 46 test_concepts(suite); 45 47 46 48 suite.return_value(); 49 } 50 51 52 void test_concepts(test::Suite& suite) 53 { 54 const MatrixWeighted const_m(2,2,0); 55 MatrixWeighted mutable_m(2,2,0); 56 // concept compiler tests 57 suite.test_concept_container2d(const_m); 58 suite.test_concept_mutable_container2d(mutable_m); 47 59 } 48 60
Note: See TracChangeset
for help on using the changeset viewer.