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