33 bool OpenEngineIniFile(const QString& fileName); |
33 bool OpenEngineIniFile(const QString& fileName); |
34 QList<QString> GetModuleList(); |
34 QList<QString> GetModuleList(); |
35 QList<QString> GetCaseListByModule(const QString& moduleName); |
35 QList<QString> GetCaseListByModule(const QString& moduleName); |
36 CSTFCase GetCase(const QString& moduleName, const int index); |
36 CSTFCase GetCase(const QString& moduleName, const int index); |
37 void RunCases(const QList<CSTFCase>& caseList, const TSTFCaseRunningType& type); |
37 void RunCases(const QList<CSTFCase>& caseList, const TSTFCaseRunningType& type); |
38 void AddCaseToSet(const QList<CSTFCase>& aCase, const QString& setName); |
38 bool AddCaseToSet(const QList<CSTFCase>& aCase, const QString& setName); |
39 |
39 |
40 //for set |
40 //for set |
41 QList<QString> GetSetList(); |
41 QList<QString> GetSetList(); |
42 QList<QString> GetCaseListBySet(const QString& setName); |
42 QList<QString> GetCaseListBySet(const QString& setName); |
43 void CreateSet(const QString& setName); |
43 bool CreateSet(QString& setName); |
44 void DeleteSet(const QString& setName); |
44 bool DeleteSet(const QString& setName); |
45 void RunSets(const QString& setName, const TSTFCaseRunningType& type); |
45 void RunSets(const QString& setName, const TSTFCaseRunningType& type); |
46 |
46 |
47 //for Started |
47 //for Started |
48 void PauseCase(); |
48 void PauseCase(); |
49 void ResumeCase(); |
49 void ResumeCase(); |
50 void AbortCase(); |
50 void AbortCase(); |
51 bool ShowOutput(); |
51 bool ShowOutput(); |
|
52 CSTFCase GetRunningCase(int index); |
52 void SetShowOutput(bool isShow); |
53 void SetShowOutput(bool isShow); |
53 |
54 |
54 //for staticstic |
55 //for staticstic |
55 QList<CSTFCase> GetCasesByStatus(const TSTFCaseStatusType& type); |
56 QList<CSTFCase> GetCasesByStatus(const TSTFCaseStatusType& type); |
56 |
57 |