SocketTest.cpp 657 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-16
  6. * Changed: 2022-11-16
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls_std/ls_std_network.hpp>
  11. using namespace ls::std::network;
  12. namespace
  13. {
  14. class SocketTest : public ::testing::Test
  15. {
  16. protected:
  17. SocketTest() = default;
  18. ~SocketTest() override = default;
  19. void SetUp() override
  20. {}
  21. void TearDown() override
  22. {}
  23. };
  24. TEST_F(SocketTest, getClassName)
  25. {
  26. ASSERT_STREQ("Socket", Socket{SocketParameter{}}.getClassName().c_str());
  27. }
  28. }