~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to formatters/tests/astyletest.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   This library is free software; you can redistribute it and/or
 
3
   modify it under the terms of the GNU Library General Public
 
4
   License version 2 as published by the Free Software Foundation.
 
5
 
 
6
   This library is distributed in the hope that it will be useful,
 
7
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
8
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
9
   Library General Public License for more details.
 
10
 
 
11
   You should have received a copy of the GNU Library General Public License
 
12
   along with this library; see the file COPYING.LIB.  If not, write to
 
13
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
14
   Boston, MA 02110-1301, USA.
 
15
*/
 
16
 
 
17
#ifndef ASTYLETEST_H
 
18
#define ASTYLETEST_H
 
19
 
 
20
#include <QtCore/QObject>
 
21
 
 
22
class AStyleFormatter;
 
23
 
 
24
class AstyleTest : public QObject
 
25
{
 
26
    Q_OBJECT
 
27
 
 
28
private slots:
 
29
    void initTestCase();
 
30
 
 
31
    void renameVariable();
 
32
    void overrideHelper();
 
33
    void varTypeAssistant();
 
34
 
 
35
private:
 
36
    AStyleFormatter* m_formatter;
 
37
};
 
38
 
 
39
#endif // ASTYLETEST_H