Home | History | Annotate | Download | only in samples

Lines Matching refs:IsPrime

82   EXPECT_FALSE(table_->IsPrime(-5));
83 EXPECT_FALSE(table_->IsPrime(0));
84 EXPECT_FALSE(table_->IsPrime(1));
85 EXPECT_FALSE(table_->IsPrime(4));
86 EXPECT_FALSE(table_->IsPrime(6));
87 EXPECT_FALSE(table_->IsPrime(100));
91 EXPECT_TRUE(table_->IsPrime(2));
92 EXPECT_TRUE(table_->IsPrime(3));
93 EXPECT_TRUE(table_->IsPrime(5));
94 EXPECT_TRUE(table_->IsPrime(7));
95 EXPECT_TRUE(table_->IsPrime(11));
96 EXPECT_TRUE(table_->IsPrime(131));