Home | History | Annotate | Download | only in samples

Lines Matching refs:IsPrime

84   EXPECT_FALSE(table_->IsPrime(-5));
85 EXPECT_FALSE(table_->IsPrime(0));
86 EXPECT_FALSE(table_->IsPrime(1));
87 EXPECT_FALSE(table_->IsPrime(4));
88 EXPECT_FALSE(table_->IsPrime(6));
89 EXPECT_FALSE(table_->IsPrime(100));
93 EXPECT_TRUE(table_->IsPrime(2));
94 EXPECT_TRUE(table_->IsPrime(3));
95 EXPECT_TRUE(table_->IsPrime(5));
96 EXPECT_TRUE(table_->IsPrime(7));
97 EXPECT_TRUE(table_->IsPrime(11));
98 EXPECT_TRUE(table_->IsPrime(131));