| 277 | class SerializationAlignment : public ::testing::Test { |
| 278 | public: |
| 279 | virtual void SetUp() { |
| 280 | /// Give them some dummy values. |
| 281 | in8 = 8; |
| 282 | in32 = 32; |
| 283 | /// Zero the outputs |
| 284 | out8 = 0; |
| 285 | out32 = 0; |
| 286 | } |
| 287 | |
| 288 | void checkOutput() { |
| 289 | ASSERT_EQ(in32, out32); |
nothing calls this directly
no outgoing calls
no test coverage detected