[go: up one dir, main page]

Menu

[96b3e1]: / test / test.cpp  Maximize  Restore  History

Download this file

18 lines (14 with data), 559 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/////////////////////////////////////////////////////////////////////////////////
// Author: Steven Lamerton
// Copyright: Copyright (C) 2011 Steven Lamerton
// License: GNU GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
/////////////////////////////////////////////////////////////////////////////////
#include <wx/wx.h>
#include <gtest/gtest.h>
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
wxApp* app = new wxApp();
wxApp::SetInstance(app);
wxEntryStart(argc, argv);
return RUN_ALL_TESTS();
}