vmbx/vmbxengine/tsrc/ut_vmbxengine/inc/ut_simhandler.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 #ifndef UT_SIMHANDLER_H
       
     2 #define UT_SIMHANDLER_H
       
     3 
       
     4 #include <QObject>
       
     5 
       
     6 class CVmbxSimHandler;
       
     7 
       
     8 class Ut_SimHandler : public QObject
       
     9 {
       
    10     Q_OBJECT
       
    11     
       
    12 public:
       
    13     Ut_SimHandler();
       
    14     virtual ~Ut_SimHandler();
       
    15     
       
    16 private slots:
       
    17     void testCreateAndDelete();
       
    18     //void testGetL();
       
    19     //void testSave();
       
    20     void testIsWritable();
       
    21     void testNotifyStoreEvent();        
       
    22     void testPhoneBookType();
       
    23     void testCancelAsyncRequest();
       
    24     
       
    25 private:
       
    26     void createSim();
       
    27     void deleteSim();
       
    28     
       
    29 private:
       
    30     CVmbxSimHandler *mSim;
       
    31 };
       
    32 
       
    33 #endif // UT_SIMHANDLER_H