[CRT] Massively improve performance of rand_s
[reactos.git] / modules / rostests / rosautotest / CTestList.cpp
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 #include "precomp.h"
9
10 /**
11 * Constructor serving for CTestList-derived classes.
12 *
13 * @param Test
14 * Pointer to a CTest-derived object, for which this test list shall serve.
15 */
16 CTestList::CTestList(CTest* Test) :
17 m_Test(Test)
18 {
19 }