File indexing completed on 2024-05-05 16:15:13

0001 /*
0002  *  This file is part of the KDE libraries
0003  *
0004  *  Copyright (C) 2012 Rolf Eike Beer <kde@opensource.sf-tec.de>
0005  *
0006  *  This library is free software; you can redistribute it and/or
0007  *  modify it under the terms of the GNU Lesser General Public
0008  *  License as published by the Free Software Foundation; either
0009  *  version 2 of the License, or (at your option) any later version.
0010  */
0011 
0012 #ifndef ECMATEST_H
0013 #define ECMATEST_H
0014 
0015 #include <QObject>
0016 
0017 class ECMAscriptTest : public QObject
0018 {
0019     Q_OBJECT
0020 private Q_SLOTS:
0021     void initTestCase();
0022     void runAllTests();
0023     void runAllTests_data();
0024     void cleanup();
0025     void cleanupTestCase();
0026 private:
0027     unsigned int m_passed;
0028     unsigned int m_failed;
0029 };
0030 
0031 #endif /* ECMATEST_H */