GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GpgFrontendTest.h
1 
29 #pragma once
30 
31 #include "GpgFrontendTestExport.h"
32 
33 // Core
34 #include "core/utils/LogUtils.h"
35 
36 namespace GpgFrontend::Test {
37 
39  int argc;
40  char **argv;
41 };
42 
43 auto GPGFRONTEND_TEST_EXPORT ExecuteAllTestCase(GpgFrontendContext args) -> int;
44 
45 #define GF_TEST_LOG_TRACE(...) GF_LOG_TRACE("test", __VA_ARGS__)
46 #define GF_TEST_LOG_DEBUG(...) GF_LOG_DEBUG("test", __VA_ARGS__)
47 #define GF_TEST_LOG_INFO(...) GF_LOG_INFO("test", __VA_ARGS__)
48 #define GF_TEST_LOG_WARN(...) GF_LOG_WARN("test", __VA_ARGS__)
49 #define GF_TEST_LOG_ERROR(...) GF_LOG_ERROR("test", __VA_ARGS__)
50 
51 } // namespace GpgFrontend::Test
Definition: GpgCoreTest.cpp:35
Definition: GpgFrontendTest.h:38