StandardOutputWriterTest.cpp 677 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2021-09-18
  6. * Changed: 2021-09-18
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls_std/ls_std.hpp>
  11. namespace
  12. {
  13. class StandardOutputWriterTest : public ::testing::Test
  14. {
  15. protected:
  16. StandardOutputWriterTest() = default;
  17. ~StandardOutputWriterTest() override = default;
  18. void SetUp() override
  19. {}
  20. void TearDown() override
  21. {}
  22. };
  23. TEST_F(StandardOutputWriterTest, write)
  24. {
  25. ls_std::StandardOutputWriter writer{};
  26. ASSERT_TRUE(writer.write("Try something!"));
  27. }
  28. }