diff -r 4e54af54a4a1 -r 6c59112cfd31 emailservices/nmutilities/tsrc/unittests/unittest_emailmru/unittest_emailmru.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailservices/nmutilities/tsrc/unittests/unittest_emailmru/unittest_emailmru.h Thu Sep 30 11:43:07 2010 +0300 @@ -0,0 +1,41 @@ +/* + * unittest_emailmru.h + * + */ + +#ifndef UNITTEST_EMAILMRU_H_ +#define UNITTEST_EMAILMRU_H_ + +#include + +class EmailMRU; + +class TestEmailMru : public QObject +{ +Q_OBJECT + +public: + + TestEmailMru(); + ~TestEmailMru(); + +private slots: + + void initTestCase(); + void cleanupTestCase(); + void init(); + void cleanup(); + //tests + void testMruStrings(); + void testMruStrings_data(); + void testUpperLimit(); + void testUpdateEntry(); + void testReset(); + void testNameOrder(); + +private: + EmailMRU *iMru; + +}; + +#endif /* UNITTEST_EMAILMRU_H_ */