blob: 91362471d2d0783c2b61fdb1bad3dfc508d775ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Copyright (C) 2005 Till Adam <adam@kde.org>
*
* This software is under the "if you run these tests and they break you
* have to fix it" license.
*/
#include <kunittest/runner.h>
#include <kunittest/module.h>
#include "messagedicttests.h"
using namespace KUnitTest;
KUNITTEST_MODULE( kunittest_storagelayermodule, "KMail Storage Layer Tests" );
KUNITTEST_MODULE_REGISTER_TESTER( MessageDictTester );
|