| 209 | } // namespace |
| 210 | |
| 211 | int main(int argc, char** argv) |
| 212 | { |
| 213 | QCoreApplication app(argc, argv); |
| 214 | |
| 215 | testAdjacentMetersDoNotSynthesizeCompression(); |
| 216 | testCompPeakDirectlyExposesCompression(); |
| 217 | testCompPeakClampsToGaugeRange(); |
| 218 | testActiveTxSliceSelectsCompPeak(); |
| 219 | testZeroSourceCompPeakUsesSliceContext(); |
| 220 | testSparseSliceIdsUseManifestDerivedWaveformBase(); |
| 221 | testAfterEqAndScMicDoNotAffectCompression(); |
| 222 | testRemovingCompPeakMarksCompressionUnavailable(); |
| 223 | testRemovingAdjacentMetersDoesNotClearCompPeak(); |
| 224 | |
| 225 | return g_failed == 0 ? 0 : 1; |
| 226 | } |
nothing calls this directly
no test coverage detected