mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
27 lines
403 B
C++
27 lines
403 B
C++
#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();
|
|
);
|
|
}
|
|
}
|