blob: e5e028470733a15eba757f6c2ea4f646f5d5091b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// **********************************************************************
//
// Copyright (c) 2001
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef CREATE_TEST_H
#define CREATE_TEST_H
#include <TestBase.h>
class CreateTest : public TestBase
{
public:
CreateTest();
private:
virtual void run();
};
#endif
|