From d41f4cc9159534057382a982cb68eeed3f4db6cb Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Thu, 4 Jan 2018 19:29:27 -0800 Subject: [PATCH] Move InPlaceConstruction test in folly/test/SynchronizedTest.cpp Summary: [Folly] Move `InPlaceConstruction` test in `folly/test/SynchronizedTest.cpp`. Differential Revision: D6653481 fbshipit-source-id: f0eadfd6c2f41e9f597a666d01e40d5553447c70 --- folly/test/SynchronizedTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/folly/test/SynchronizedTest.cpp b/folly/test/SynchronizedTest.cpp index b1db69b5..58edbe42 100644 --- a/folly/test/SynchronizedTest.cpp +++ b/folly/test/SynchronizedTest.cpp @@ -95,6 +95,10 @@ TYPED_TEST(SynchronizedTest, ConstCopy) { testConstCopy(); } +TYPED_TEST(SynchronizedTest, InPlaceConstruction) { + testInPlaceConstruction(); +} + template class SynchronizedTimedTest : public testing::Test {}; @@ -146,10 +150,6 @@ TYPED_TEST(SynchronizedTimedWithConstTest, TimedSynchronizeWithConst) { testTimedSynchronizedWithConst(); } -TYPED_TEST(SynchronizedTest, InPlaceConstruction) { - testInPlaceConstruction(); -} - using CountPair = std::pair; // This class is specialized only to be uesed in SynchronizedLockTest class FakeMutex { -- 2.34.1