aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testaddfunction.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-10-20 10:08:26 -0200
committerLuciano Miguel Wolf <luciano.wolf@indt.org.br>2009-10-21 16:34:20 -0300
commit73f6ac4faafed5c8c275ff01a22a53bfbc7fc515 (patch)
treec69bcb1929325b040b3983a24fc349577ec79ab3 /tests/testaddfunction.h
parentac27d38d44bef714b08d8b675ae105ac41047bfa (diff)
Implemented a signature parser for the AddedFunction class.
Diffstat (limited to 'tests/testaddfunction.h')
-rw-r--r--tests/testaddfunction.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/testaddfunction.h b/tests/testaddfunction.h
new file mode 100644
index 000000000..7fe07d6a4
--- /dev/null
+++ b/tests/testaddfunction.h
@@ -0,0 +1,36 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* 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 St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#ifndef TESTADDFUNCTION_H
+#define TESTADDFUNCTION_H
+#include <QObject>
+
+class TestAddFunction : public QObject
+{
+ Q_OBJECT
+private slots:
+ void testParsingFuncNameAndConstness();
+ void testAddFunction();
+};
+
+#endif \ No newline at end of file