1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-01 05:03:52 +00:00

Adding info to changelog

This commit is contained in:
Henry Fredrick Schreiner 2018-04-02 12:29:31 +02:00 committed by Henry Schreiner
parent 0c3df9150c
commit 9a1ac48a67
2 changed files with 7 additions and 5 deletions

View File

@ -18,9 +18,11 @@ Other, non-user facing changes:
* Informational printout now added to CTest [#95]
* Better single file generation [#95]
* Added support for GTest on MSVC 2017 (but not in C++17 mode, will need next version of GTest)
* Types now have a specific size, separate from the expected number - cleaner and more powerful internally [#92]
[#64]: https://github.com/CLIUtils/CLI11/issues/64
[#90]: https://github.com/CLIUtils/CLI11/issues/90
[#92]: https://github.com/CLIUtils/CLI11/issues/92
[#95]: https://github.com/CLIUtils/CLI11/pull/95

View File

@ -361,13 +361,13 @@ TEST_F(TApp, NoMissingValueMoreThan) {
args = {"-v", "2", "3", "4"};
run();
EXPECT_EQ(vals1, std::vector<int>({2,3,4}));
EXPECT_EQ(vals1, std::vector<int>({2, 3, 4}));
app.reset();
args = {"--vals", "2", "3", "4"};
run();
EXPECT_EQ(vals2, std::vector<int>({2,3,4}));
EXPECT_EQ(vals2, std::vector<int>({2, 3, 4}));
}
TEST_F(TApp, NotRequiredOptsSingle) {