mirror of
https://github.com/encounter/cpp3ds.git
synced 2026-03-30 11:04:22 -07:00
13 lines
236 B
C++
13 lines
236 B
C++
#include "gtest/gtest.h"
|
|
#include <cpp3ds/Graphics.hpp>
|
|
|
|
TEST(Test, EqualityCheck){
|
|
cpp3ds::TopScreen ts;
|
|
EXPECT_EQ(true, true);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|