| 117 | |
| 118 | |
| 119 | void |
| 120 | TestPath::insert( Test *test, |
| 121 | int index ) |
| 122 | { |
| 123 | if ( index < 0 || index > getTestCount() ) |
| 124 | throw std::out_of_range( "TestPath::insert(): index out of range" ); |
| 125 | m_tests.insert( m_tests.begin() + index, test ); |
| 126 | } |
| 127 | |
| 128 | void |
| 129 | TestPath::insert( const TestPath &path, |
no test coverage detected