2021-05-08 11:27:55 +03:00
|
|
|
//#
|
|
|
|
//# Copyright (C) 2020-2021 QuasarApp.
|
|
|
|
//# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
|
|
|
|
|
|
|
#include "signertest.h"
|
2021-05-08 14:11:34 +03:00
|
|
|
#include <QDebug>
|
2021-05-08 11:27:55 +03:00
|
|
|
|
|
|
|
SignerTest::SignerTest() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SignerTest::~SignerTest() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SignerTest::test() {
|
|
|
|
testSigner();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SignerTest::testSigner() {
|
2021-05-08 14:10:12 +03:00
|
|
|
qWarning() << "The SignerTest class is not implemented"
|
2021-05-08 11:27:55 +03:00
|
|
|
QVERIFY(true);
|
|
|
|
}
|