Files
imgui-godot/doc/cpp-demo/test/test.cpp
Patrick Dawson 2ebac092fe WIP C++ example
2022-11-23 06:15:09 +01:00

9 lines
137 B
C++

#include <godot_cpp/godot.hpp>
#include <gtest/gtest.h>
#include <mycppnode.h>
TEST(SomethingTest, DoAThing)
{
ASSERT_TRUE(true);
}