diff -r 594d59766373 -r 7d48bed6ce0c vmbx/vmbxengine/tsrc/ut_vmbxengine/inc/ut_simhandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vmbx/vmbxengine/tsrc/ut_vmbxengine/inc/ut_simhandler.h Tue Aug 31 15:45:17 2010 +0300 @@ -0,0 +1,33 @@ +#ifndef UT_SIMHANDLER_H +#define UT_SIMHANDLER_H + +#include + +class CVmbxSimHandler; + +class Ut_SimHandler : public QObject +{ + Q_OBJECT + +public: + Ut_SimHandler(); + virtual ~Ut_SimHandler(); + +private slots: + void testCreateAndDelete(); + //void testGetL(); + //void testSave(); + void testIsWritable(); + void testNotifyStoreEvent(); + void testPhoneBookType(); + void testCancelAsyncRequest(); + +private: + void createSim(); + void deleteSim(); + +private: + CVmbxSimHandler *mSim; +}; + +#endif // UT_SIMHANDLER_H