ddnet/src/test/test.h
heinrich5991 4301ffab58 Give tests their own playground IStorage
Also add a function to clean it up after the test.
2021-05-14 01:00:41 +02:00

14 lines
218 B
C++

#ifndef TEST_TEST_H
#define TEST_TEST_H
class IStorage;
class CTestInfo
{
public:
CTestInfo();
IStorage *CreateTestStorage();
void DeleteTestStorageFilesOnSuccess();
char m_aFilename[64];
};
#endif // TEST_TEST_H