e439adc551
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1510 a95241bf-73f2-0310-859d-f6bbb57e9c96
35 lines
975 B
C++
35 lines
975 B
C++
//------------------------------------------------------------------------------
|
|
// GetInfoTester.h
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef GET_INFO_TESTER_H
|
|
#define GET_INFO_TESTER_H
|
|
|
|
// Standard Includes -----------------------------------------------------------
|
|
|
|
// System Includes -------------------------------------------------------------
|
|
|
|
// Project Includes ------------------------------------------------------------
|
|
|
|
// Local Includes --------------------------------------------------------------
|
|
#include "../common.h"
|
|
|
|
// Local Defines ---------------------------------------------------------------
|
|
|
|
// Globals ---------------------------------------------------------------------
|
|
|
|
class GetInfoTester : public TestCase
|
|
{
|
|
public:
|
|
GetInfoTester() {;}
|
|
GetInfoTester(std::string name) : TestCase(name) {;}
|
|
|
|
void GetInfo1();
|
|
void GetInfo2();
|
|
|
|
static Test* Suite();
|
|
};
|
|
|
|
#endif // GET_INFO_TESTER_H
|