Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KDE PIM Add-ons
Commits
a8417c12
Commit
a8417c12
authored
Jun 02, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more autotests
parent
64144870
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
81 additions
and
0 deletions
+81
-0
kmail/editorsendcheckplugins/confirm-address/autotests/confirmaddressplugintest.cpp
...ns/confirm-address/autotests/confirmaddressplugintest.cpp
+34
-0
kmail/editorsendcheckplugins/confirm-address/autotests/confirmaddressplugintest.h
...gins/confirm-address/autotests/confirmaddressplugintest.h
+33
-0
kmail/editorsendcheckplugins/confirm-address/confirmaddressinterface.cpp
...dcheckplugins/confirm-address/confirmaddressinterface.cpp
+11
-0
kmail/editorsendcheckplugins/confirm-address/confirmaddressinterface.h
...endcheckplugins/confirm-address/confirmaddressinterface.h
+3
-0
No files found.
kmail/editorsendcheckplugins/confirm-address/autotests/confirmaddressplugintest.cpp
0 → 100644
View file @
a8417c12
/*
Copyright (C) 2016 Montel Laurent <montel@kde.org>
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 (at your option) 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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "confirmaddressplugintest.h"
#include <QTest>
ConfirmAddressPluginTest
::
ConfirmAddressPluginTest
(
QObject
*
parent
)
:
QObject
(
parent
)
{
}
ConfirmAddressPluginTest
::~
ConfirmAddressPluginTest
()
{
}
QTEST_MAIN
(
ConfirmAddressPluginTest
)
kmail/editorsendcheckplugins/confirm-address/autotests/confirmaddressplugintest.h
0 → 100644
View file @
a8417c12
/*
Copyright (C) 2016 Montel Laurent <montel@kde.org>
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 (at your option) 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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef CONFIRMADDRESSPLUGINTEST_H
#define CONFIRMADDRESSPLUGINTEST_H
#include <QObject>
class
ConfirmAddressPluginTest
:
public
QObject
{
Q_OBJECT
public:
explicit
ConfirmAddressPluginTest
(
QObject
*
parent
=
Q_NULLPTR
);
~
ConfirmAddressPluginTest
();
};
#endif // CONFIRMADDRESSPLUGINTEST_H
kmail/editorsendcheckplugins/confirm-address/confirmaddressinterface.cpp
View file @
a8417c12
...
...
@@ -35,3 +35,14 @@ void ConfirmAddressInterface::exec()
{
//TODO
}
QWidget
*
ConfirmAddressInterface
::
createConfigureWidget
(
QWidget
*
parent
)
const
{
return
{};
}
bool
ConfirmAddressInterface
::
hasConfigureDialog
()
const
{
return
true
;
}
kmail/editorsendcheckplugins/confirm-address/confirmaddressinterface.h
View file @
a8417c12
...
...
@@ -29,6 +29,9 @@ public:
explicit
ConfirmAddressInterface
(
QObject
*
parent
=
Q_NULLPTR
);
~
ConfirmAddressInterface
();
void
exec
()
Q_DECL_OVERRIDE
;
bool
hasConfigureDialog
()
const
Q_DECL_OVERRIDE
;
QWidget
*
createConfigureWidget
(
QWidget
*
parent
)
const
Q_DECL_OVERRIDE
;
};
#endif // CONFIRMADDRESSINTERFACE_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment