Move folly/experimental/AsymmetricMemoryBarrier.h
[folly.git] / folly / test / ContainerTraitsTest.cpp
1 /*
2  * Copyright 2017 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/ContainerTraits.h>
18
19 #include <folly/portability/GTest.h>
20
21 using namespace std;
22 using namespace folly;
23
24 struct Node {
25   size_t copies = 0;
26   Node() noexcept {}
27   Node(const Node& n) noexcept { copies = n.copies; ++copies; }
28   Node(Node&& n) noexcept { swap(copies, n.copies); ++copies; }
29 };
30
31 template <class T>
32 class VectorWrapper {
33  public:
34   using value_type = T;
35   vector<T>& underlying;
36   explicit VectorWrapper(vector<T>& v) : underlying(v) {}
37   void push_back(const T& t) { underlying.push_back(t); }
38 };
39
40 TEST(ContainerTraits, WithoutEmplaceBack) {
41   vector<Node> v;
42   VectorWrapper<Node> vw(v);
43   container_emplace_back_or_push_back(vw);
44   EXPECT_EQ(1, v.at(0).copies);
45 }
46
47 TEST(ContainerTraits, WithEmplaceBack) {
48   vector<Node> v;
49   container_emplace_back_or_push_back(v);
50   EXPECT_EQ(0, v.at(0).copies);
51 }