nut-debian/tests/example.cpp

63 lines
1.4 KiB
C++
Raw Normal View History

2012-08-13 00:39:31 +03:00
/* example - CppUnit unit test example
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
Copyright (C)
2012 Emilien Kia <emilienkia-guest@alioth.debian.org>
2010-03-26 01:20:59 +02:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2012-08-13 00:39:31 +03:00
#include <cppunit/extensions/HelperMacros.h>
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
class ExampleTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ExampleTest );
CPPUNIT_TEST( testOne );
CPPUNIT_TEST_SUITE_END();
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
public:
void setUp();
void tearDown();
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
void testOne();
};
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION( ExampleTest );
2010-03-26 01:20:59 +02:00
2012-08-13 00:39:31 +03:00
void ExampleTest::setUp()
{
}
void ExampleTest::tearDown()
{
}
void ExampleTest::testOne()
{
// Set up
int i = 1;
float f = 1.0;
// Process
int cast = (int)f;
// Check
CPPUNIT_ASSERT_EQUAL( i, cast );
}
2010-03-26 01:20:59 +02:00