mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
24 lines
235 B
C++
24 lines
235 B
C++
#include "gtest/gtest.h"
|
|
|
|
class ODP2OOX_AnimationTest : public testing::Test
|
|
{
|
|
public:
|
|
void SetUp() override
|
|
{
|
|
|
|
}
|
|
|
|
void TearDown() override
|
|
{
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
TEST_F(ODP2OOX_AnimationTest, hello_test)
|
|
{
|
|
|
|
EXPECT_EQ(1, 1);
|
|
} |