Home | History | Annotate | Download | only in test

Lines Matching refs:ParseInt32Flag

269 using testing::internal::ParseInt32Flag;
1707 // Tests ParseInt32Flag().
1709 // Tests that ParseInt32Flag() returns false and doesn't change the
1713 EXPECT_FALSE(ParseInt32Flag("--a=100", "b", &value));
1716 EXPECT_FALSE(ParseInt32Flag("a=100", "a", &value));
1720 // Tests that ParseInt32Flag() returns false and doesn't change the
1726 EXPECT_FALSE(ParseInt32Flag("--abc=12345678987654321", "abc", &value));
1729 EXPECT_FALSE(ParseInt32Flag("--abc=-12345678987654321", "abc", &value));
1733 // Tests that ParseInt32Flag() returns false and doesn't change the
1740 EXPECT_FALSE(ParseInt32Flag("--abc=A1", "abc", &value));
1743 EXPECT_FALSE(ParseInt32Flag("--abc=12X", "abc", &value));
1747 // Tests that ParseInt32Flag() parses the value of the flag and
1752 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=456", "abc", &value));
1755 EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=-789",