mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
9 lines
173 B
C++
9 lines
173 B
C++
|
#include "webfuse/webfuse.hpp"
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
TEST(app, init)
|
||
|
{
|
||
|
char args0[] = "webfuse";
|
||
|
char * args[] = { args0, nullptr };
|
||
|
webfuse::app(1, args);
|
||
|
}
|