diff options
author | saturneric <[email protected]> | 2023-12-06 13:10:48 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-06 13:18:07 +0000 |
commit | a0f0fd98efa12ef33959badcc25ff568e8b242b4 (patch) | |
tree | 860563fdbfe353e57724b08c4eb30dc03d5f8a7d /src/test/GpgFrontendTest.h | |
parent | feat: convert basic opera to async style (diff) | |
download | GpgFrontend-a0f0fd98efa12ef33959badcc25ff568e8b242b4.tar.gz GpgFrontend-a0f0fd98efa12ef33959badcc25ff568e8b242b4.zip |
feat: move test to src and add submodule googletest
Diffstat (limited to '')
-rw-r--r-- | src/test/GpgFrontendTest.h (renamed from test/GpgCoreTestImportExport.cpp) | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/test/GpgCoreTestImportExport.cpp b/src/test/GpgFrontendTest.h index 34f34ba0..55c6b734 100644 --- a/test/GpgCoreTestImportExport.cpp +++ b/src/test/GpgFrontendTest.h @@ -26,13 +26,16 @@ * */ -#include <string> -#include <vector> +#pragma once -#include "GpgFrontendTest.h" -#include "gpg/GpgConstants.h" -#include "gpg/function/GpgKeyGetter.h" -#include "gpg/function/GpgKeyImportExporter.h" -#include "gpg/model/GpgKey.h" +#include <gtest/gtest.h> +#include <spdlog/sinks/rotating_file_sink.h> +#include <spdlog/sinks/stdout_color_sinks.h> +#include <spdlog/spdlog.h> -TEST_F(GpgCoreTest, CoreExportSecretTest) {}
\ No newline at end of file + +#include <libconfig.h++> + +#include "GpgFrontendTestExport.h" + +namespace GpgFrontend::Test {} // namespace GpgFrontend::Test |