Skip to content

Commit

Permalink
Implement Tls test
Browse files Browse the repository at this point in the history
  • Loading branch information
Iandiehard committed Mar 29, 2024
1 parent 3885eea commit 5fb471a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions test/component/test_cases/tls_test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* Diagnostic Client library
* Copyright (C) 2024 Avijit Dey
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#include <gtest/gtest.h>
#include "component_test.h"
#include "boost-support/server/tls/tls_acceptor.h"

namespace test {
namespace component {
namespace test_cases {

template<typename TlsVersion>
class TLSFixture : public component::ComponentTest {
public:
using TlsAcceptor = boost_support::server::tls::TlsAcceptor12;

using
};

} // namespace test_cases
} // namespace component
} // namespace test

0 comments on commit 5fb471a

Please sign in to comment.