blob: 8fd37f1243e5f16251dacbfb6b13493b05894bce (
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 <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();
);
}
}
|