From: Yedidya Feldblum Date: Fri, 5 Jan 2018 03:29:27 +0000 (-0800) Subject: Move InPlaceConstruction test in folly/test/SynchronizedTest.cpp X-Git-Tag: v2018.01.08.00~12 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d41f4cc9159534057382a982cb68eeed3f4db6cb;p=folly.git 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 --- 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 {