Files
pilotclient/tests/blackmisc/testcontainers.h
2015-03-20 16:49:11 +01:00

41 lines
1.0 KiB
C++

/* Copyright (C) 2014
* swift project community / contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKMISCTEST_TESTCONTAINERS_H
#define BLACKMISCTEST_TESTCONTAINERS_H
#include <QtTest/QtTest>
namespace BlackMiscTest
{
//! Testing containers
class CTestContainers : public QObject
{
Q_OBJECT
public:
//! Constructor
explicit CTestContainers(QObject *parent = nullptr) : QObject(parent) {}
private slots:
void collectionBasics();
void sequenceBasics();
void joinAndSplit();
void findTests();
void dictionaryBasics();
void timestampList();
};
} // namespace
#endif // guard