mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
16 lines
207 B
C++
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);
|
|
}
|
|
};
|
|
#
|
|
} |