SUAPI-CppWrapper
C++WrapperforSketchUpCAPI
SketchUpAPITests.cpp
1 // SketchUpAPITests.cpp : Defines the entry point for the console application.
2 //
3 
4 #include "SketchUpAPITests.hpp"
5 
6 #include "gtest/gtest.h"
7 
8 
9 int main(int argc, char **argv) {
10  ::testing::InitGoogleTest(&argc, argv);
11  return RUN_ALL_TESTS();
12 }
13