mirror of
https://github.com/pkdawson/imgui-godot.git
synced 2026-09-17 12:14:17 +00:00
11 lines
204 B
C++
11 lines
204 B
C++
#include "MyCppNode.h"
|
|
#include <godot_cpp/godot.hpp>
|
|
#include <gtest/gtest.h>
|
|
|
|
// make a Godot test runner, or just test modular game logic here
|
|
|
|
TEST(GameLogicTests, DoStuff)
|
|
{
|
|
ASSERT_TRUE(true);
|
|
}
|