Include a test for setting header_table_size

This commit is contained in:
4JX
2022-08-25 01:25:24 +02:00
parent 4e6d835094
commit 7af4adf829
2 changed files with 39 additions and 0 deletions

View File

@@ -372,6 +372,11 @@ impl Mock<frame::Settings> {
self.0.set_enable_connect_protocol(Some(val));
self
}
pub fn header_table_size(mut self, val: u32) -> Self {
self.0.set_header_table_size(Some(val));
self
}
}
impl From<Mock<frame::Settings>> for frame::Settings {