| 212 | } |
| 213 | |
| 214 | void ClearATimeStep() |
| 215 | { |
| 216 | CPPUNIT_ASSERT_MESSAGE("Is not empty before clear()!", !m_BaseDataImpl->IsEmptyTimeStep(1)); |
| 217 | m_BaseDataImpl->Clear(); |
| 218 | CPPUNIT_ASSERT_MESSAGE("...but afterwards!", m_BaseDataImpl->IsEmptyTimeStep(1)); |
| 219 | } |
| 220 | |
| 221 | void BaseDataSetAndGetProperty_Success() |
| 222 | { |
nothing calls this directly
no test coverage detected