Files
cpp3ds/test/main.cpp
T

13 lines
236 B
C++
Raw Normal View History

2014-02-06 23:13:00 -05:00
#include "gtest/gtest.h"
#include <cpp3ds/Graphics.hpp>
2014-02-06 23:13:00 -05:00
TEST(Test, EqualityCheck){
cpp3ds::TopScreen ts;
2014-02-06 23:35:31 -05:00
EXPECT_EQ(true, true);
2014-02-06 23:13:00 -05:00
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}