mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 05:55:08 +00:00
Add test end istream_iterator
This commit is contained in:
parent
112960e255
commit
1f15112ddb
1 changed files with 4 additions and 0 deletions
|
@ -178,6 +178,10 @@ TEST(UnCheckedIteratrTests, test_increment_istream)
|
|||
EXPECT_EQ (*it, 0x0041);
|
||||
EXPECT_EQ (*it, 0x0041);
|
||||
EXPECT_EQ (++it, s.end());
|
||||
//two end iterators are always equals
|
||||
using Iter = std::istream_iterator<char>;
|
||||
EXPECT_EQ(it, iterator<Iter>(Iter{}));
|
||||
EXPECT_EQ(iterator<Iter>(Iter{}), iterator<Iter>(Iter{}));
|
||||
}
|
||||
|
||||
TEST(UnCheckedIteratrTests, test_increment_string)
|
||||
|
|
Loading…
Add table
Reference in a new issue