da6cd92b22
limitation. --HG-- branch : develop
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
/************************************************************************
|
|
**
|
|
** @file tst_qmutokenparser.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 15 10, 2015
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentine project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2015 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina 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.
|
|
**
|
|
** Valentina 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#ifndef TST_QMUTOKENPARSER_H
|
|
#define TST_QMUTOKENPARSER_H
|
|
|
|
#include <QLocale>
|
|
#include <QObject>
|
|
|
|
class TST_QmuTokenParser : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TST_QmuTokenParser(QObject *parent = nullptr);
|
|
private slots:
|
|
void IsSingle_data();
|
|
void IsSingle();
|
|
void TokenFromUser_data();
|
|
void TokenFromUser();
|
|
void cleanupTestCase();
|
|
private:
|
|
Q_DISABLE_COPY(TST_QmuTokenParser)
|
|
QLocale m_systemLocale;
|
|
|
|
void PrepareVal(qreal val, const QLocale &locale);
|
|
bool IsSingleFromUser(const QString &formula);
|
|
};
|
|
|
|
#endif // TST_QMUTOKENPARSER_H
|