Run clang-format over all project C/C++ source and header files (.c, .cpp, .cc, .h, .hpp, .hh, .m, .mm) under app/ and tests/. Non-source files (svg, qm, qrc, etc.) were not touched.
9 lines
172 B
C++
9 lines
172 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "pluginSupport/OliveHost.h"
|
|
|
|
TEST(PluginSupport, LoadPluginsEmptyPath)
|
|
{
|
|
EXPECT_NO_THROW({ olive::plugin::loadPlugins(QString()); });
|
|
}
|