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.
27 lines
411 B
27 lines
411 B
#include "options.h"
|
|
#include "config.h"
|
|
|
|
#include "exampletest.h"
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( VCalConduitTest );
|
|
|
|
|
|
void VCalConduitTest::setUp()
|
|
{
|
|
device = TQString("testdevice");
|
|
link = new KPilotLocalLink(0, "localLink");
|
|
syncMode = SyncAction::SyncMode::eHotSync;
|
|
}
|
|
|
|
|
|
void VCalConduitTest::tearDown()
|
|
{
|
|
delete link;
|
|
}
|
|
|
|
|
|
void VCalConduitTest::testConstructor()
|
|
{
|
|
CPPUNIT_ASSERT( true == true );
|
|
}
|