| 178 | }; |
| 179 | |
| 180 | TEST_METHOD(DefaultConstruction_InitializesTimestampsToZero) |
| 181 | { |
| 182 | SwapChainCoreState swapChain; |
| 183 | |
| 184 | Assert::AreEqual(0ull, swapChain.lastSimStartTime); |
| 185 | Assert::AreEqual(0ull, swapChain.lastDisplayedSimStartTime); |
| 186 | Assert::AreEqual(0ull, swapChain.lastDisplayedScreenTime); |
| 187 | Assert::AreEqual(0ull, swapChain.firstAppSimStartTime); |
| 188 | } |
| 189 | |
| 190 | TEST_METHOD(DefaultConstruction_InitializesOptionalPresentToEmpty) |
| 191 | { |
nothing calls this directly
no test coverage detected