@@ -50,7 +50,8 @@ INSTANTIATE_TEST_SUITE_P(
5050 std::make_tuple<std::string, int, int, std::vector<int> >(" 1 1 -1\n 2 2 -23\n 3 3 -456\n 4 4 -7890\n " , 5 , 5 , { -1 , -23 , -456 , -7890 }), // negative values
5151 std::make_tuple<std::string, int, int, std::vector<int> >(" 12 34 567890" , 50 , 50 , { 567890 }), // no trailing newline
5252 std::make_tuple<std::string, int, int, std::vector<int> >(" 12 34 567890 " , 50 , 50 , { 567890 }), // trailing blank without a trailing newline.
53- std::make_tuple<std::string, int, int, std::vector<int> >(" 1 1 11 \n 2 22 2222\n 33 3\t 33\t\n 44 44 \t 4\t \n " , 100 , 100 , { 11 , 2222 , 33 , 4 }) // variable numbers of blanks
53+ std::make_tuple<std::string, int, int, std::vector<int> >(" 1 1 11 \n 2 22 2222\n 33 3\t 33\t\n 44 44 \t 4\t \n " , 100 , 100 , { 11 , 2222 , 33 , 4 }), // variable numbers of blanks
54+ std::make_tuple<std::string, int, int, std::vector<int> >(" 1 1 0111\n 2 22 +002\n 33 3 033\t\n 44 44 +0004\n " , 100 , 100 , { 111 , 2 , 33 , 4 }) // leading zeros and pluses
5455 )
5556);
5657
0 commit comments