This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-maat/test/maat_api_gtest.cpp

15 lines
225 B
C++
Raw Normal View History

2022-11-25 16:32:29 +08:00
#include "maat/maat.h"
2022-10-27 17:58:52 +08:00
2022-11-25 16:32:29 +08:00
#include <gtest/gtest.h>
2022-10-27 17:58:52 +08:00
TEST(EQ_Test, Always_True) {
EXPECT_EQ(1, 1);
}
int main(int argc, char ** argv)
{
int ret=0;
::testing::InitGoogleTest(&argc, argv);
ret=RUN_ALL_TESTS();
return ret;
2022-12-05 23:21:18 +08:00
}