Update googletest and googlemock to 1.8.0. (#23)

This commit is contained in:
Peter Johnson
2017-08-15 23:53:20 -07:00
committed by GitHub
parent fa7d5bc023
commit 43c103c0ac
52 changed files with 4551 additions and 1746 deletions

View File

@@ -86,7 +86,7 @@ static Base64TestParam sample[] = {
"mQgc28gb24uLi4K"},
};
INSTANTIATE_TEST_CASE_P(Base64Sample, Base64Test, ::testing::ValuesIn(sample));
INSTANTIATE_TEST_CASE_P(Base64Sample, Base64Test, ::testing::ValuesIn(sample),);
static Base64TestParam standard[] = {
{0, "", ""},
@@ -100,6 +100,6 @@ static Base64TestParam standard[] = {
};
INSTANTIATE_TEST_CASE_P(Base64Standard, Base64Test,
::testing::ValuesIn(standard));
::testing::ValuesIn(standard), );
} // namespace wpi