Home | History | Annotate | Download | only in test

Lines Matching refs:ParseInt32Flag

180 using testing::internal::ParseInt32Flag;
2014 // Tests ParseInt32Flag().
2016 // Tests that ParseInt32Flag() returns false and doesn't change the
2020 EXPECT_FALSE(ParseInt32Flag("--a=100", "b", &value));
2023 EXPECT_FALSE(ParseInt32Flag("a=100", "a", &value));
2027 // Tests that ParseInt32Flag() returns false and doesn't change the
2033 EXPECT_FALSE(ParseInt32Flag("--abc=12345678987654321", "abc", &value));
2036 EXPECT_FALSE(ParseInt32Flag("--abc=-12345678987654321", "abc", &value));
2040 // Tests that ParseInt32Flag() returns false and doesn't change the
2047 EXPECT_FALSE(ParseInt32Flag("--abc=A1", "abc", &value));
2050 EXPECT_FALSE(ParseInt32Flag("--abc=12X", "abc", &value));
2054 // Tests that ParseInt32Flag() parses the value of the flag and
2059 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=456", "abc", &value));
2062 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=-789",