Files
modorganizer-bsapacker/tests/ArchiveAutoServiceFacts.cpp
T
MF b89cecc479 Revert "Merge branch 'master' into unit-testing"
This reverts commit 301201c071, reversing
changes made to f2afd4d875.
2020-06-24 22:26:49 +01:00

26 lines
416 B
C++

#include "gtest/gtest.h"
#include "gmock/gmock.h"
#include <bsapacker/ArchiveAutoService.h>
using namespace BsaPacker;
namespace BsaPackerTests
{
class ArchiveAutoServiceFacts : public ::testing::Test
{
protected:
void SetUp() override {
}
void TearDown() override {
}
};
TEST_F(ArchiveAutoServiceFacts, Ctor_Always_Constructs)
{
EXPECT_NO_THROW(
auto result = ArchiveAutoService();
);
}
}