StandardOutputWriterTest.cpp 702 B

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