mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-26 16:19:30 +03:00
Fixed test failures in Streaming[Unsigned]LongLongWritesCorrectCharacters
This commit is contained in:
parent
3caf00bcf7
commit
443b35690a
1 changed files with 2 additions and 2 deletions
|
|
@ -62,14 +62,14 @@ TEST(StreamingUnsignedLongWritesCorrectCharacters)
|
|||
TEST(StreamingLongLongWritesCorrectCharacters)
|
||||
{
|
||||
MemoryOutStream stream;
|
||||
stream << (long long)(ULONG_MAX) * 2;
|
||||
stream << (long long)8589934590ll;
|
||||
CHECK_EQUAL("8589934590", stream.GetText());
|
||||
}
|
||||
|
||||
TEST(StreamingUnsignedLongLongWritesCorrectCharacters)
|
||||
{
|
||||
MemoryOutStream stream;
|
||||
stream << (unsigned long long)(ULONG_MAX) * 2;
|
||||
stream << (unsigned long long)8589934590ull;
|
||||
CHECK_EQUAL("8589934590", stream.GetText());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue