diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-05 14:32:48 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-05 14:32:48 +0100 |
commit | 455fcf0bb13baa18eac12d265ebdb743cb8815f3 (patch) | |
tree | 90e423a556215dbadd8fe143d3a15779f3561c31 /tests/test-https.cpp | |
parent | 9d60b64fe684b18af5323c2b52cb26c04883db72 (diff) |
Added tests (WIP)
Diffstat (limited to 'tests/test-https.cpp')
-rw-r--r-- | tests/test-https.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/test-https.cpp b/tests/test-https.cpp new file mode 100644 index 0000000..dcd33d7 --- /dev/null +++ b/tests/test-https.cpp @@ -0,0 +1,28 @@ +#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 HTTPSFixture +{ +public: + HTTPSFixture(){} + ~HTTPSFixture(){} + void setup(){} + void teardown(){} +}; + +BOOST_FIXTURE_TEST_CASE(https, HTTPSFixture) +{ +} + |