FairMQ: Add test coverage for PluginServices

This commit is contained in:
Dennis Klein
2017-07-26 00:34:07 +02:00
committed by Mohammad Al-Turany
parent 052ac8487d
commit dfb2bac4bc
5 changed files with 239 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/********************************************************************************
* Copyright (C) 2017 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* *
* This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, *
* copied verbatim in the file "LICENSE" *
********************************************************************************/
#include <gtest/gtest.h>
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
::testing::FLAGS_gtest_death_test_style = "threadsafe";
return RUN_ALL_TESTS();
}