mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
HTTP improvements:
* Increased code coverage
* New Body concepts:
is_Body
is_ReadableBody
is_WritableBody
This commit is contained in:
@@ -66,6 +66,14 @@ public:
|
||||
expect(buffer_size(buffer_cat(
|
||||
sb1.data(), sb2.data())) == 12);
|
||||
}
|
||||
for(auto it = bs.begin(); it != bs.end(); ++it)
|
||||
{
|
||||
decltype(bs)::const_iterator copy;
|
||||
copy = it;
|
||||
expect(copy == it);
|
||||
copy = copy;
|
||||
expect(copy == it);
|
||||
}
|
||||
}
|
||||
|
||||
void testIterators()
|
||||
|
||||
Reference in New Issue
Block a user