⛏️ index : haiku.git

//------------------------------------------------------------------------------
//	PerformTest.cpp
//
//------------------------------------------------------------------------------

// Standard Includes -----------------------------------------------------------

// System Includes -------------------------------------------------------------
#include <Looper.h>

// Project Includes ------------------------------------------------------------

// Local Includes --------------------------------------------------------------
#include "PerformTest.h"

// Local Defines ---------------------------------------------------------------

// Globals ---------------------------------------------------------------------

//------------------------------------------------------------------------------
void TPerformTest::PerformTest1()
{
	BLooper Looper;
	CPPUNIT_ASSERT(Looper.Perform(1, NULL) == B_ERROR);
}
//------------------------------------------------------------------------------
TestSuite* TPerformTest::Suite()
{
	TestSuite* suite = new TestSuite("BLooper::Perform(perform_code, void*)");

	ADD_TEST(BLooper, suite, TPerformTest, PerformTest1);

	return suite;
}
//------------------------------------------------------------------------------

/*
 * $Log $
 *
 * $Id  $
 *
 */