1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/test_util/lws_test_environment.cc

16 lines
223 B
C++
Raw Normal View History

#include <gtest/gtest.h>
#include "webfuse/impl/util/lws_log.h"
namespace webfuse_test
{
class LwsTestEnvironment: public testing::Environment
{
public:
void SetUp()
{
wf_impl_lwslog_disable();
}
};
}