[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
+28
View File
@@ -0,0 +1,28 @@
cmake_minimum_required(VERSION 3.14)
project(MobileGLTest)
# GoogleTest requires at least C++17
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
include(FetchContent)
FetchContent_Declare(
googletest
URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
enable_testing()
add_executable(
SanityTest
SanityTest.cpp
)
target_link_libraries(
SanityTest
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(SanityTest)
+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);
}
+3
View File
@@ -0,0 +1,3 @@
cmake -S . -B build && \
cmake --build build -j${nproc} && \
ctest --test-dir build