mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
29 lines
942 B
C++
29 lines
942 B
C++
/********************************************************************************
|
|
* 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>
|
|
#include <fairmq/PluginManager.h>
|
|
#include <FairMQLogger.h>
|
|
#include <vector>
|
|
|
|
namespace
|
|
{
|
|
|
|
using namespace fair::mq;
|
|
using namespace std;
|
|
|
|
TEST(PluginManager, LoadPluginStatic)
|
|
{
|
|
auto mgr = PluginManager{};
|
|
|
|
ASSERT_NO_THROW(mgr.LoadPlugin("s:test_dummy"));
|
|
ASSERT_NO_THROW(mgr.LoadPlugin("s:test_dummy2"));
|
|
}
|
|
|
|
} /* namespace */
|