mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-05-03 07:37:29 +02:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/*
|
|
|
|
Firewall Builder
|
|
|
|
Copyright (C) 2009 NetCitadel, LLC
|
|
|
|
Author: Vadim Kurland vadim@fwbuilder.org
|
|
|
|
This program is free software which we release under the GNU General Public
|
|
License. You may redistribute and/or modify this program under the terms
|
|
of that license as published by the Free Software Foundation; either
|
|
version 2 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.
|
|
|
|
To get a copy of the GNU General Public License, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
#include <cppunit/CompilerOutputter.h>
|
|
#include "PFImporterTest.h"
|
|
#include "fwbuilder/Resources.h"
|
|
|
|
#include "FWWindow.h"
|
|
#include "FWBSettings.h"
|
|
#include "FWBApplication.h"
|
|
|
|
#include <QApplication>
|
|
#include <QString>
|
|
#include <string>
|
|
|
|
#include "common/init.cpp"
|
|
|
|
int fwbdebug = 0;
|
|
//QString user_name;
|
|
FWWindow *mw = nullptr;
|
|
FWBSettings *st = nullptr;
|
|
FWBApplication *app = nullptr;
|
|
std::string platform;
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
QApplication app(argc, argv, false);
|
|
|
|
init(argv);
|
|
Resources res(Constants::getResourcesFilePath());
|
|
CppUnit::TextUi::TestRunner runner;
|
|
runner.addTest( PFImporterTest::suite() );
|
|
runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
|
|
std::cerr ) );
|
|
|
|
runner.run();
|
|
return 0;
|
|
}
|