Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2010-11-22 01:06:30 +0300
committerFelix Geyer <debfx@fobos.de>2010-11-22 01:06:30 +0300
commit230d24a123a04c08bfe8a209dd12f2e5b8a52379 (patch)
treeff19fd8704c40f50098954ddaa47cd1e7fab610b /tests/TestSymmetricCipher.cpp
parenta428464573b0d99e07e2752bbd89b650889af2e8 (diff)
No longer use automoc.
Diffstat (limited to 'tests/TestSymmetricCipher.cpp')
-rw-r--r--tests/TestSymmetricCipher.cpp15
1 files changed, 2 insertions, 13 deletions
diff --git a/tests/TestSymmetricCipher.cpp b/tests/TestSymmetricCipher.cpp
index 923e0c550..669a58049 100644
--- a/tests/TestSymmetricCipher.cpp
+++ b/tests/TestSymmetricCipher.cpp
@@ -15,6 +15,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "TestSymmetricCipher.h"
+
#include <QtCore/QBuffer>
#include <QtTest/QTest>
@@ -22,17 +24,6 @@
#include "crypto/SymmetricCipher.h"
#include "streams/SymmetricCipherStream.h"
-class TestSymmetricCipher : public QObject
-{
- Q_OBJECT
-
-private Q_SLOTS:
- void initTestCase();
- void testAes256CbcEncryption();
- void testAes256CbcDecryption();
- void testSalsa20();
-};
-
void TestSymmetricCipher::initTestCase()
{
Crypto::init();
@@ -170,5 +161,3 @@ void TestSymmetricCipher::testSalsa20()
}
QTEST_MAIN(TestSymmetricCipher);
-
-#include "TestSymmetricCipher.moc"