blob: f98c14c58c9dec2ec0eda016b0ad1a7a1d505b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef EXAMPLETEST_H
#define EXAMPLETEST_H
#include <cppunit/extensions/HelperMacros.h>
#include <tqstring.h>
#include "kpilotlocallink.h"
#include "syncAction.h"
class VCalConduitTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( VCalConduitTest );
CPPUNIT_TEST( testConstructor );
CPPUNIT_TEST_SUITE_END();
private:
TQString device;
KPilotLocalLink *link;
SyncAction::SyncMode::Mode syncMode;
public:
void setUp();
void tearDown();
void testConstructor();
};
#endif
|