ConnectionPoolTest.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /***************************************************************************
  2. *
  3. * Project _____ __ ____ _ _
  4. * ( _ ) /__\ (_ _)_| |_ _| |_
  5. * )(_)( /(__)\ )( (_ _)(_ _)
  6. * (_____)(__)(__)(__) |_| |_|
  7. *
  8. *
  9. * Copyright 2018-present, Leonid Stryzhevskyi <lganzzzo@gmail.com>
  10. *
  11. * Licensed under the Apache License, Version 2.0 (the "License");
  12. * you may not use this file except in compliance with the License.
  13. * You may obtain a copy of the License at
  14. *
  15. * http://www.apache.org/licenses/LICENSE-2.0
  16. *
  17. * Unless required by applicable law or agreed to in writing, software
  18. * distributed under the License is distributed on an "AS IS" BASIS,
  19. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. * See the License for the specific language governing permissions and
  21. * limitations under the License.
  22. *
  23. ***************************************************************************/
  24. #ifndef oatpp_test_network_ConnectionPoolTest_hpp
  25. #define oatpp_test_network_ConnectionPoolTest_hpp
  26. #include "oatpp-test/UnitTest.hpp"
  27. namespace oatpp { namespace test { namespace network {
  28. class ConnectionPoolTest : public UnitTest {
  29. public:
  30. ConnectionPoolTest():UnitTest("TEST[network::ConnectionPoolTest]"){}
  31. void onRun() override;
  32. };
  33. }}}
  34. #endif // oatpp_test_network_ConnectionPoolTest_hpp