Files
pilotclient/samples/blackmisc/main.cpp
Klaus Basan dbc3339599 Fixes in samples
* removed qSleep / dependency of Qt test libs
* QCoreApplication not required
2014-06-23 01:19:14 +02:00

33 lines
869 B
C++

/* Copyright (C) 2013 VATSIM Community / authors
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <QCoreApplication>
#include "sampleschangeobject.h"
#include "samplesmetadata.h"
#include "samplescontainer.h"
#include "samplesjson.h"
#include "blackmisc/blackmiscfreefunctions.h"
#include "blackmisc/pqallquantities.h"
using namespace BlackMisc;
using namespace BlackMiscTest;
/*!
* Sample tests
*/
int main(int argc, char *argv[])
{
// QCoreApplication a(argc, argv);
Q_UNUSED(argc);
Q_UNUSED(argv);
BlackMisc::initResources();
CSamplesJson::samples();
CSamplesChangeObject::samples();
CSamplesContainer::samples();
CSamplesMetadata::samples();
return 0;
}