/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright The KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include #include #include #include bool init_unit_test() { SetPgm( new MOCK_PGM_BASE() ); boost::unit_test::framework::master_test_suite().p_name.value = "IPC API tests"; wxApp::SetInstance( new wxAppConsole ); // Ensure the "C" locale is used LOCALE_IO dummy; bool ok = wxInitialize( boost::unit_test::framework::master_test_suite().argc, boost::unit_test::framework::master_test_suite().argv ); if( ok ) { wxSetAssertHandler( &KI_TEST::wxAssertThrower ); Pgm().InitPgm( true, true, true ); const MOCK_PGM_BASE& program = static_cast( Pgm() ); MOCK_EXPECT( program.GetCommonSettings ) .returns( Pgm().GetSettingsManager().GetCommonSettings() ); } return ok; } int main( int argc, char* argv[] ) { return boost::unit_test::unit_test_main( &init_unit_test, argc, argv ); }