Skip to content

Commit

Permalink
test more stream overloadable methods
Browse files Browse the repository at this point in the history
  • Loading branch information
no-lex committed Nov 1, 2024
1 parent 613a703 commit 14935a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/testutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,10 @@ namespace
assert(s.read(nullptr, 0) == 0);
assert(s.write(nullptr, 0) == 0);
assert(s.flush() == true);
assert(s.getchar() == -1);
assert(s.putchar(0) == false);
assert(s.putstring("a") == false);
assert(s.putline("a") == false);
assert(s.getcrc() == 0);
}
}
Expand Down

0 comments on commit 14935a8

Please sign in to comment.