[Test] (MG_Test/Sanity): Setup basic sanity test.

This commit is contained in:
2025-07-17 12:42:44 +08:00
parent 9604bdd50a
commit 6a2b122ab7
3 changed files with 39 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <gtest/gtest.h>
TEST(Sanity, BasicAssertions) {
// Expect two strings not to be equal.
EXPECT_STRNE("hello", "world");
// Expect equality.
EXPECT_EQ(7 * 6, 42);
}