Home | History | Annotate | Download | only in test

Lines Matching refs:ParseInt32Flag

162 using testing::internal::ParseInt32Flag;
1852 // Tests ParseInt32Flag().
1854 // Tests that ParseInt32Flag() returns false and doesn't change the
1858 EXPECT_FALSE(ParseInt32Flag("--a=100", "b", &value));
1861 EXPECT_FALSE(ParseInt32Flag("a=100", "a", &value));
1865 // Tests that ParseInt32Flag() returns false and doesn't change the
1871 EXPECT_FALSE(ParseInt32Flag("--abc=12345678987654321", "abc", &value));
1874 EXPECT_FALSE(ParseInt32Flag("--abc=-12345678987654321", "abc", &value));
1878 // Tests that ParseInt32Flag() returns false and doesn't change the
1885 EXPECT_FALSE(ParseInt32Flag("--abc=A1", "abc", &value));
1888 EXPECT_FALSE(ParseInt32Flag("--abc=12X", "abc", &value));
1892 // Tests that ParseInt32Flag() parses the value of the flag and
1897 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=456", "abc", &value));
1900 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=-789",