From c31f44447e78776c8caa6e2b972c0753662762c9 Mon Sep 17 00:00:00 2001 From: heck Date: Mon, 29 Aug 2022 12:50:28 +0200 Subject: [PATCH] Test: add - test_session_init.cc --- test/test_session_init.cc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/test_session_init.cc diff --git a/test/test_session_init.cc b/test/test_session_init.cc new file mode 100644 index 0000000..9ff21eb --- /dev/null +++ b/test/test_session_init.cc @@ -0,0 +1,22 @@ +// This file is under GNU General Public License 3.0 +// see LICENSE.txt + +#include +#include +#include +#include + +#include +#include + +using namespace std; +using namespace pEp; + +int main(int argc, char **argv) +{ +// ::PEP_SESSION session_; +// ::PEP_STATUS status = ::init(&session_, NULL, NULL, NULL); + + Adapter::session(); + return 0; +}