[ROSAUTOTEST] Implement a process activity timeout of 2 minutes. If there is no log...
[reactos.git] / modules / rostests / rosautotest / CTestList.h
1 /*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Class implementing a generic Test list, needs to be used by a derived class
5 * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
6 */
7
8 class CTestList
9 {
10 protected:
11 CTest* m_Test;
12
13 CTestList(CTest* Test);
14
15 public:
16 virtual CTestInfo* GetNextTestInfo() = 0;
17 };