vmbx/vmbxengine/tsrc/ut_vmbxengine/inc/ut_pbkstore.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 #ifndef UT_PBKSTORE_H
       
     2 #define UT_PBKSTORE_H
       
     3 
       
     4 #include <QObject>
       
     5 
       
     6 class CVmbxPbkStore;
       
     7 
       
     8 class Ut_PbkStore : public QObject
       
     9 {
       
    10     Q_OBJECT
       
    11     
       
    12 public:
       
    13     Ut_PbkStore();
       
    14     virtual ~Ut_PbkStore();
       
    15     
       
    16 private slots:
       
    17     void testCreateAndDelete();
       
    18     void testIsWritable();
       
    19     void testPhoneBookType();
       
    20     // Can not handle AO in Current UT desing
       
    21     void testWrite(); 
       
    22     void testPhonebookStore();
       
    23     void testGetL();
       
    24     
       
    25 private:
       
    26     void createPbk();
       
    27     void deletePbk();
       
    28     
       
    29 private:
       
    30     CVmbxPbkStore *mPbk;
       
    31 };
       
    32 
       
    33 #endif // UT_PBKSTORE_H