Update of /cvsroot/mockpp/mockpp/mockpp/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13495
Added Files:
ResponseVector_test.cpp
Log Message:
skeleton
--- NEW FILE: ResponseVector_test.cpp ---
/***************************************************************************
ResponseVector_Test.cpp - unit tests for ResponseVector classes
-------------------
begin : Sun Oct 30 2005
copyright : (C) 2002-2005 by Ewald Arnold
email : mockpp at ewald-arnold dot de
$Id: ResponseVector_test.cpp,v 1.1 2005/10/30 20:26:32 ewald-arnold Exp $
***************************************************************************/
/**************************************************************************
*
* This program is free software; you can redistribute it Or/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
***************************************************************************/
#include <mockpp/mockpp.h> // always first
#ifndef HAVE_CPPUNIT
# warning CppUnit not available at compile time
#else
#include <mockpp/ResponeVector3.h
#include <cppunit/extensions/HelperMacros.h>
class ResponseVector_Test : public CppUnit::TestFixture
{
public:
CPPUNIT_TEST_SUITE( ResponseVector_Test );
CPPUNIT_TEST(test_thrower);
CPPUNIT_TEST_SUITE_END();
public:
void test_thrower();
};
CPPUNIT_TEST_SUITE_REGISTRATION(ResponseVector_Test);
void ResponseVector_Test::test_thrower()
{
}
#endif // HAVE_CPPUNIT
|