| 213 | : UnitTest(base_class_name(unittest::type_name<TestName<int> >()).c_str()) {} |
| 214 | |
| 215 | void run() |
| 216 | { |
| 217 | // get the first type in the list |
| 218 | typedef typename unittest::get_type<TypeList,0>::type first_type; |
| 219 | |
| 220 | unittest::for_each_type<TypeList,TestName,first_type,0> for_each; |
| 221 | |
| 222 | // loop over the types |
| 223 | for_each(); |
| 224 | } |
| 225 | }; // end SimpleUnitTest |
| 226 | |
| 227 |
nothing calls this directly
no outgoing calls
no test coverage detected