diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-29 06:55:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-29 06:55:55 +0300 |
commit | 3441603804b740f560f2ddddce8bc56231a1e901 (patch) | |
tree | 7de74cbbdbdc15d08465ff229fb461867b5c5920 /tests | |
parent | ac6cdc8dd5f42820014b5d0b09b5e52593fb0a20 (diff) | |
download | mplint-3441603804b740f560f2ddddce8bc56231a1e901.tar.gz mplint-3441603804b740f560f2ddddce8bc56231a1e901.tar.bz2 mplint-3441603804b740f560f2ddddce8bc56231a1e901.tar.xz mplint-3441603804b740f560f2ddddce8bc56231a1e901.zip |
Add new check for ":" after class name and before base classes.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testreport.txt | 3 | ||||
-rw-r--r-- | tests/testsrc/bad/baseclass.cpp | 45 | ||||
-rw-r--r-- | tests/testsrc/bad/baseclass.h | 44 | ||||
-rw-r--r-- | tests/testsrc/good/baseclass.cpp | 47 | ||||
-rw-r--r-- | tests/testsrc/good/baseclass.h | 44 |
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 |