1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 00:20:45 +00:00
falk-werner_webfuse-provider/test/webfuse/utils/jansson_test_environment.cc

16 lines
207 B
C++
Raw Normal View History

#include <gtest/gtest.h>
#include <jansson.h>
namespace webfuse_test
{
class JanssonTestEnvironment: public ::testing::Environment
{
public:
void SetUp()
{
json_object_seed(0);
}
};
#
}