You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
497 B
29 lines
497 B
14 years ago
|
#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
|