()
| 788 | |
| 789 | #[test] |
| 790 | fn must_write_stop_field() { |
| 791 | let (_, mut o_prot) = test_objects(true); |
| 792 | |
| 793 | assert!(o_prot.write_field_stop().is_ok()); |
| 794 | |
| 795 | let expected: [u8; 1] = [0x00]; |
| 796 | assert_eq_written_bytes!(o_prot, expected); |
| 797 | } |
| 798 | |
| 799 | #[test] |
| 800 | fn must_round_trip_field_stop() { |
nothing calls this directly
no test coverage detected