1/*
2 * Copyright 2012-present 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#pragma once
18
19// We have mutex types outside of folly that we want to test with Synchronized.
20// Make it easy for mutex implementators to test their classes with
21// Synchronized by just having a test like:
22//
23// class MyMutex { ... };
24//
25// TEST(Synchronized, Basic) {
26// testBasic<MyMutex>();
27// }
28//
29// ... similar for testConcurrency, testDualLocking, etc.
30
31namespace folly {
32namespace sync_tests {
33template <class Mutex>
34void testBasic();
35template <class Mutex>
36void testDeprecated();
37template <class Mutex>
38void testConcurrency();
39template <class Mutex>
40void testAcquireLocked();
41template <class Mutex>
42void testAcquireLockedWithConst();
43template <class Mutex>
44void testDualLockingWithConst();
45template <class Mutex>
46void testDualLocking();
47template <class Mutex>
48void testDualLockingWithConst();
49template <class Mutex>
50void testTimed();
51template <class Mutex>
52void testTimedShared();
53template <class Mutex>
54void testTimedSynchronizedDeprecated();
55template <class Mutex>
56void testTimedSynchronizedWithConst();
57template <class Mutex>
58void testConstCopy();
59template <class Mutex>
60void testInPlaceConstruction();
61} // namespace sync_tests
62} // namespace folly
63
64#include <folly/test/SynchronizedTestLib-inl.h>
65