123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-09-18
- * Changed: 2022-11-09
- *
- * */
- #include <gtest/gtest.h>
- #include <ls_std/ls_std_io.hpp>
- using namespace ls::std::io;
- namespace
- {
- class StandardOutputWriterTest : public ::testing::Test
- {
- protected:
- StandardOutputWriterTest() = default;
- ~StandardOutputWriterTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(StandardOutputWriterTest, write)
- {
- StandardOutputWriter writer{};
- ASSERT_TRUE(writer.write("Try something!"));
- }
- }
|