diff options
author | saturneric <[email protected]> | 2023-12-13 10:01:06 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-13 10:01:06 +0000 |
commit | 42264ed0d7a3c91fbe9f307984964ffc9e5fe65c (patch) | |
tree | a3ddecbd6ad723e42d68cc2c5aed7a88c4e242a3 /src/test/core/GpgCoreTest.h | |
parent | feat: move test to src and add submodule googletest (diff) | |
download | GpgFrontend-42264ed0d7a3c91fbe9f307984964ffc9e5fe65c.tar.gz GpgFrontend-42264ed0d7a3c91fbe9f307984964ffc9e5fe65c.zip |
refactor: improve the structure of main,core and test module
Diffstat (limited to 'src/test/core/GpgCoreTest.h')
-rw-r--r-- | src/test/core/GpgCoreTest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/core/GpgCoreTest.h b/src/test/core/GpgCoreTest.h index bffaf9ad..5730b6e5 100644 --- a/src/test/core/GpgCoreTest.h +++ b/src/test/core/GpgCoreTest.h @@ -28,12 +28,13 @@ #pragma once +#include <gtest/gtest.h> + #include <boost/date_time.hpp> #include <boost/dll.hpp> #include <boost/dll/runtime_symbol_info.hpp> #include <filesystem> -#include "GpgFrontendTest.h" #include "core/function/GlobalSettingStation.h" #include "core/typedef/CoreTypedef.h" @@ -56,7 +57,6 @@ class GpgCoreTest : public ::testing::Test { // Data File Directory Location std::filesystem::path data_path_ = GlobalSettingStation::GetInstance().GetAppDir() / "test" / "data"; - }; } // namespace GpgFrontend::Test
\ No newline at end of file |