1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-17
- * Changed: 2020-11-29
- *
- * */
- #include <gtest/gtest.h>
- #include <ls_std/ls_std.hpp>
- #include <TestHelper.hpp>
- namespace {
- class FileWriterTest : public ::testing::Test {
- protected:
- FileWriterTest() = default;
- ~FileWriterTest() override = default;
- void SetUp() override {}
- void TearDown() override {}
- };
- TEST_F(FileWriterTest, reset)
- {
- std::string path = TestHelper::getResourcesFolderLocation() + "tmp_file_writer_test.txt";
- ls_std::File file {path};
- file.createNewFile();
- ls_std::FileWriter writer {file};
- ASSERT_TRUE(writer.write("Testing something!\n"));
- // reset
- path = TestHelper::getResourcesFolderLocation() + "tmp_file_writer_test2.txt";
- ls_std::File anotherFile {path};
- anotherFile.createNewFile();
- writer.reset(anotherFile);
- ASSERT_TRUE(writer.write("Testing something else!\n"));
- // remove
- file.remove();
- ASSERT_FALSE(file.exists());
- anotherFile.remove();
- ASSERT_FALSE(anotherFile.exists());
- }
- TEST_F(FileWriterTest, write)
- {
- std::string path = TestHelper::getResourcesFolderLocation() + "tmp_file_writer_test.txt";
- ls_std::File file {path};
- ASSERT_FALSE(file.exists());
- file.createNewFile();
- ASSERT_TRUE(file.exists());
- ls_std::FileWriter writer {file};
- ASSERT_TRUE(writer.write("Testing something!\n"));
- file.remove();
- ASSERT_FALSE(file.exists());
- }
- }
|