1
0
mirror of https://github.com/falk-werner/webfuse synced 2026-03-02 03:40:24 +00:00

added unit tests

This commit is contained in:
Falk Werner
2022-11-12 12:29:30 +01:00
parent 3b6e19653c
commit 6c96e8c6f8
6 changed files with 93 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#include "webfuse/webfuse.hpp"
#include <gtest/gtest.h>
TEST(app, init)
{
char args0[] = "webfuse";
char * args[] = { args0, nullptr };
webfuse::app(1, args);
}