No longer use automoc.

This commit is contained in:
Felix Geyer 2010-11-21 23:06:30 +01:00
parent a428464573
commit 230d24a123
21 changed files with 416 additions and 164 deletions

View file

@ -15,20 +15,13 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TestCryptoHash.h"
#include <QtTest/QTest>
#include "crypto/Crypto.h"
#include "crypto/CryptoHash.h"
class TestCryptoHash : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void test();
};
void TestCryptoHash::initTestCase()
{
Crypto::init();
@ -55,5 +48,3 @@ void TestCryptoHash::test()
}
QTEST_MAIN(TestCryptoHash);
#include "TestCryptoHash.moc"