mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
16 lines
354 B
C++
16 lines
354 B
C++
/*
|
|
* PROJECT: ReactOS Automatic Testing Utility
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Class implementing a bucket for Test information
|
|
* COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
class CTestInfo
|
|
{
|
|
public:
|
|
wstring CommandLine;
|
|
string Module;
|
|
string Test;
|
|
string Log;
|
|
};
|