[Test] (MG_Test/Program): add Sanity test

This commit is contained in:
2025-07-19 21:33:28 +08:00
parent ba485e4adc
commit 6f455bc26a
3 changed files with 48 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// Created by Swung 0x48 on 2025/7/17.
//
#include <gtest/gtest.h>
#include "Includes.h"
using namespace MobileGL;
class ProgramTest : public ::testing::Test {
protected:
};
TEST_F(ProgramTest, Sanity) {
ASSERT_TRUE(true);
}