Use the GTest portability headers
[folly.git] / folly / test / AtomicBitSetTest.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/AtomicBitSet.h>
18
19 #include <folly/portability/GTest.h>
20
21 #include <glog/logging.h>
22
23 namespace folly { namespace test {
24
25 TEST(AtomicBitSet, Simple) {
26   constexpr size_t kSize = 1000;
27   AtomicBitSet<kSize> bs;
28
29   EXPECT_EQ(kSize, bs.size());
30
31   for (size_t i = 0; i < kSize; ++i) {
32     EXPECT_FALSE(bs[i]);
33   }
34
35   bs.set(42);
36   for (size_t i = 0; i < kSize; ++i) {
37     EXPECT_EQ(i == 42, bs[i]);
38   }
39
40   bs.set(43);
41   for (size_t i = 0; i < kSize; ++i) {
42     EXPECT_EQ((i == 42 || i == 43), bs[i]);
43   }
44
45   bs.reset(42);
46   for (size_t i = 0; i < kSize; ++i) {
47     EXPECT_EQ((i == 43), bs[i]);
48   }
49
50   bs.reset(43);
51   for (size_t i = 0; i < kSize; ++i) {
52     EXPECT_FALSE(bs[i]);
53   }
54 }
55
56 }}  // namespaces
57
58 int main(int argc, char *argv[]) {
59   testing::InitGoogleTest(&argc, argv);
60   gflags::ParseCommandLineFlags(&argc, &argv, true);
61   return RUN_ALL_TESTS();
62 }