Skip to content

Commit

Permalink
Missing Test/wmain.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKepzie committed Oct 7, 2016
1 parent 47c5224 commit d4eea99
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Tests/wmain.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <stdio.h>

#include "gtest/gtest.h"

#if defined(_WIN32) && defined(UNICODE)
GTEST_API_ int wmain(int argc, wchar_t **argv) {
printf("Running wmain() from wmain.cpp\n");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
#endif

0 comments on commit d4eea99

Please sign in to comment.