aboutsummaryrefslogtreecommitdiff
path: root/libs/bsapacker/tests/FileWriterServiceFacts.cpp
blob: 5038640057f68e8475dbe953f2c15735fd15ee6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "gtest/gtest.h"
#include "gmock/gmock.h"

#include "FileWriterService.h"

using namespace BsaPacker;

namespace BsaPackerTests
{
	class FileWriterServiceFacts : public ::testing::Test
	{
	protected:
		void SetUp() override {
		}

		void TearDown() override {
		}
	};

	TEST_F(FileWriterServiceFacts, Ctor_Always_Constructs)
	{
		EXPECT_NO_THROW(
			auto result = FileWriterService();
		);
	}
}