/************************************************************************************* * Copyright (C) 2007 by Aleix Pol * * * * 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 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. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software * * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * *************************************************************************************/ #include "operatorsmodeltest.h" #include #include #include #include #include using namespace std; using Analitza::Expression; QTEST_KDEMAIN_CORE( OperatorsModelTest ) OperatorsModelTest::OperatorsModelTest(QObject *parent) : QObject(parent) {} OperatorsModelTest::~OperatorsModelTest() {} void OperatorsModelTest::initTestCase() {} void OperatorsModelTest::cleanupTestCase() {} void OperatorsModelTest::testExamples_data() { QTest::addColumn("i"); for(int i=0; imodify("x", 0.1); Expression e = a.calculate(); if(!a.isCorrect()) qDebug() << example << "3. error" << a.errors();// QVERIFY(a.isCorrect()); if(!e.isCorrect()) qDebug() << example << "4. error" << e.error(); // QVERIFY(e.isCorrect()); QVERIFY(!a.expression().toMathMLPresentation().isEmpty()); e = a.evaluate(); if(!a.isCorrect()) qDebug() << example << "5. error" << a.errors();// QVERIFY(a.isCorrect()); if(!e.isCorrect()) qDebug() << example << "6. error" << e.error(); // QVERIFY(e.isCorrect()); QVERIFY(!a.expression().toMathMLPresentation().isEmpty()); } #include "operatorsmodeltest.moc"