mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
18 lines
328 B
C++
18 lines
328 B
C++
#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();
|
|
}
|
|
};
|
|
|
|
::testing::Environment * const lws_env = ::testing::AddGlobalTestEnvironment(new LwsTestEnvironment());
|
|
|
|
} |