nut-debian/tests/example.cpp

80 lines
2.2 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>
2022-07-10 10:23:45 +03:00
2020 Jim Klimov <jimklimov@gmail.com>
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
*/
2022-07-10 10:23:45 +03:00
#include "common.h"
/* Current CPPUnit offends the honor of C++98 */
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_EXIT_TIME_DESTRUCTORS || defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_GLOBAL_CONSTRUCTORS)
#pragma GCC diagnostic push
# ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_GLOBAL_CONSTRUCTORS
# pragma GCC diagnostic ignored "-Wglobal-constructors"
# endif
# ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_EXIT_TIME_DESTRUCTORS
# pragma GCC diagnostic ignored "-Wexit-time-destructors"
# endif
#endif
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:
2022-07-10 10:23:45 +03:00
void setUp() override;
void tearDown() override;
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
2022-07-10 10:23:45 +03:00
int cast = static_cast<int>(f);
2012-08-13 00:39:31 +03:00
// Check
CPPUNIT_ASSERT_EQUAL( i, cast );
}
2010-03-26 01:20:59 +02:00
2022-07-10 10:23:45 +03:00
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_EXIT_TIME_DESTRUCTORS || defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_GLOBAL_CONSTRUCTORS)
#pragma GCC diagnostic pop
#endif