| 463 | } |
| 464 | |
| 465 | void Write(FileHandle out) { |
| 466 | CheckedWriteFile(out, &address_, sizeof(address_)); |
| 467 | CheckedWriteFile(out, &expected_value_, sizeof(expected_value_)); |
| 468 | } |
| 469 | |
| 470 | static StringDataInChildProcess Read(FileHandle in) { |
| 471 | StringDataInChildProcess str; |
no test coverage detected