summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/testreport.txt3
-rw-r--r--tests/testsrc/bad/baseclass.cpp45
-rw-r--r--tests/testsrc/bad/baseclass.h44
-rw-r--r--tests/testsrc/good/baseclass.cpp47
-rw-r--r--tests/testsrc/good/baseclass.h44
5 files changed, 183 insertions, 0 deletions
diff --git a/tests/testreport.txt b/tests/testreport.txt
index da80304..b71b36b 100644
--- a/tests/testreport.txt
+++ b/tests/testreport.txt
@@ -1,4 +1,7 @@
[testsrc/bad/avatarlistbox.xml:1]: V009: Wrong xml header. Must be '<?xml version="1.0" encoding="utf-8"?>'
+[testsrc/bad/baseclass.cpp:32]: V006: Wrong align after class name and before ':'.
+[testsrc/bad/baseclass.cpp:37]: V006: Wrong align after class name and before ':'.
+[testsrc/bad/baseclass.h:30]: V006: Wrong align after class name and before ':'.
[testsrc/bad/brackets.cpp:23]: V015: Brackets formatting error. Wrong last bracket position
[testsrc/bad/brackets.cpp:34]: V015: Brackets formatting error. Wrong last bracket position
[testsrc/bad/brackets.cpp:45]: V015: Brackets formatting error. Wrong last bracket position
diff --git a/tests/testsrc/bad/baseclass.cpp b/tests/testsrc/bad/baseclass.cpp
new file mode 100644
index 0000000..88e9323
--- /dev/null
+++ b/tests/testsrc/bad/baseclass.cpp
@@ -0,0 +1,45 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * 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
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "lintmanager.h"
+
+#include "debug.h"
+
+friend class CharDeleteConfirm;
+
+class Test1 notfinal
+{
+ A_DELETE_COPY(Test1)
+}
+
+class Test2 final: public Test1
+{
+ A_DELETE_COPY(Test2)
+}
+
+struct Test2 final: public Test1, public Test3
+{
+ A_DELETE_COPY(Test2)
+}
+
+
+/*
+ * Sets the widget being dragged. Used by the Gui class to
+*/ \ No newline at end of file
diff --git a/tests/testsrc/bad/baseclass.h b/tests/testsrc/bad/baseclass.h
new file mode 100644
index 0000000..4227864
--- /dev/null
+++ b/tests/testsrc/bad/baseclass.h
@@ -0,0 +1,44 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * 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
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "lintmanager.h"
+
+friend class CharDeleteConfirm;
+
+class Test1 notfinal
+{
+ A_DELETE_COPY(Test1)
+}
+
+class Test2 final: public Test1
+{
+ friend class CharDeleteConfirm;
+ A_DELETE_COPY(Test2)
+}
+
+struct Test2 final : public Test1, public Test3
+{
+ A_DELETE_COPY(Test2)
+}
+
+
+/*
+ * Sets the widget being dragged. Used by the Gui class to
+*/ \ No newline at end of file
diff --git a/tests/testsrc/good/baseclass.cpp b/tests/testsrc/good/baseclass.cpp
new file mode 100644
index 0000000..6cad6da
--- /dev/null
+++ b/tests/testsrc/good/baseclass.cpp
@@ -0,0 +1,47 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * 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
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "lintmanager.h"
+
+#include "debug.h"
+
+friend class CharDeleteConfirm;
+
+class Test1 notfinal
+{
+ friend class CharDeleteConfirm;
+ A_DELETE_COPY(Test1)
+}
+
+class Test2 final : public Test1
+{
+ A_DELETE_COPY(Test2)
+}
+
+struct Test2 final : public Test1, public Test3
+{
+ friend class CharDeleteConfirm;
+ A_DELETE_COPY(Test2)
+}
+
+
+/*
+ * Sets the widget being dragged. Used by the Gui class to
+*/ \ No newline at end of file
diff --git a/tests/testsrc/good/baseclass.h b/tests/testsrc/good/baseclass.h
new file mode 100644
index 0000000..06a18a2
--- /dev/null
+++ b/tests/testsrc/good/baseclass.h
@@ -0,0 +1,44 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * 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
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "lintmanager.h"
+
+friend class CharDeleteConfirm;
+
+class Test1 notfinal
+{
+ A_DELETE_COPY(Test1)
+}
+
+class Test2 final : public Test1
+{
+ friend class CharDeleteConfirm;
+ A_DELETE_COPY(Test2)
+}
+
+struct Test2 final : public Test1, public Test3
+{
+ A_DELETE_COPY(Test2)
+}
+
+
+/*
+ * Sets the widget being dragged. Used by the Gui class to
+*/ \ No newline at end of file