summaryrefslogtreecommitdiffstats
path: root/kpilot/tests/conduits/vcalconduit/exampletest.h
blob: 137c3132670c7b96ca74cfb6de4c56cdd038065e (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 <qstring.h>

#include "kpilotlocallink.h"
#include "syncAction.h"

class VCalConduitTest : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE( VCalConduitTest );
  CPPUNIT_TEST( testConstructor );
  CPPUNIT_TEST_SUITE_END();

private:
	QString device;
	KPilotLocalLink *link;
	SyncAction::SyncMode::Mode syncMode;

public:
  void setUp();
  void tearDown();

  void testConstructor();
};

#endif