mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-09 09:35:56 -05:00
Fix PR #1600
This commit is contained in:
16
tests/dummy_test.cpp
Normal file
16
tests/dummy_test.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
namespace {
|
||||
class FooTest : public ::testing::Test {
|
||||
|
||||
};
|
||||
|
||||
TEST(DummyTest, Works) {
|
||||
ASSERT_EQ(1, 1) << "One is not equal to one";
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
Reference in New Issue
Block a user