git-svn-id: file:///srv/svn/repos/haiku/trunk/current@69 a95241bf-73f2-0310-859d-f6bbb57e9c96
42 lines
1021 B
C++
42 lines
1021 B
C++
//------------------------------------------------------------------------------
|
|
// RemoveHandlerTest.h
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef REMOVEHANDLERTEST_H
|
|
#define REMOVEHANDLERTEST_H
|
|
|
|
// Standard Includes -----------------------------------------------------------
|
|
|
|
// System Includes -------------------------------------------------------------
|
|
|
|
// Project Includes ------------------------------------------------------------
|
|
|
|
// Local Includes --------------------------------------------------------------
|
|
#include "../common.h"
|
|
|
|
// Local Defines ---------------------------------------------------------------
|
|
|
|
// Globals ---------------------------------------------------------------------
|
|
|
|
class TRemoveHandlerTest : public TestCase
|
|
{
|
|
public:
|
|
TRemoveHandlerTest() {;}
|
|
TRemoveHandlerTest(std::string name) : TestCase(name) {;}
|
|
|
|
void RemoveHandler1();
|
|
|
|
static Test* Suite();
|
|
};
|
|
|
|
#endif //REMOVEHANDLERTEST_H
|
|
|
|
/*
|
|
* $Log $
|
|
*
|
|
* $Id $
|
|
*
|
|
*/
|
|
|