aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testremovefield.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-11-22 19:09:00 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:12 -0300
commitfc170a368630a90a74fea796aa20f8f2c7fe7cc5 (patch)
treea0a373ee234d1213b81b17d028ebe78a2321a01d /tests/testremovefield.h
parent548b2ea5b535b5a80ddf4881430faef064c7226c (diff)
Added unit test to field removal.
Diffstat (limited to 'tests/testremovefield.h')
-rw-r--r--tests/testremovefield.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/testremovefield.h b/tests/testremovefield.h
new file mode 100644
index 000000000..301150c6f
--- /dev/null
+++ b/tests/testremovefield.h
@@ -0,0 +1,36 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 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 TESTREMOVEFIELD_H
+#define TESTREMOVEFIELD_H
+
+#include <QObject>
+
+class TestRemoveField : public QObject
+{
+ Q_OBJECT
+ private slots:
+ void testRemoveField();
+};
+
+#endif