1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 14:10:52 +00:00
falk-werner_webfuse-provider/test/webfuse/utils/jansson_test_environment.cc
2020-06-13 17:08:05 +02:00

16 lines
207 B
C++

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