diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-05 18:19:44 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-05 18:19:44 +0100 |
commit | 15b6682b177dda1bc64384c7ff1a82e88917c2e5 (patch) | |
tree | 9d89f9729c1f815ddb46da9a1eca71dac76fcdbe /tests/test-archive.cpp | |
parent | 455fcf0bb13baa18eac12d265ebdb743cb8815f3 (diff) |
Moved archive.h to libreichwein
Diffstat (limited to 'tests/test-archive.cpp')
-rw-r--r-- | tests/test-archive.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/test-archive.cpp b/tests/test-archive.cpp deleted file mode 100644 index e6b5894..0000000 --- a/tests/test-archive.cpp +++ /dev/null @@ -1,28 +0,0 @@ -#include <boost/test/unit_test.hpp> -#include <boost/test/data/dataset.hpp> -#include <boost/test/data/monomorphic.hpp> -#include <boost/test/data/test_case.hpp> - -#include <boost/property_tree/ptree.hpp> -#include <boost/property_tree/xml_parser.hpp> - -#include <sstream> -#include <string> - -#include "archive.h" - -using namespace std::string_literals; - -class ArchiveFixture -{ -public: - ArchiveFixture(){} - ~ArchiveFixture(){} - void setup(){} - void teardown(){} -}; - -BOOST_FIXTURE_TEST_CASE(archivetest, ArchiveFixture) -{ -} - |