You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
4.7 KiB
189 lines
4.7 KiB
/* /////////////////////////////////////////////////////////////////////////
|
|
* File: test/component/test.component.inserters.real/test.component.inserters.real.cpp
|
|
*
|
|
* Purpose: Implementation file for the test.component.inserters.real project.
|
|
*
|
|
* Created: 19th October 2006
|
|
* Updated: 6th August 2012
|
|
*
|
|
* Status: Wizard-generated
|
|
*
|
|
* License: (Licensed under the Synesis Software Open License)
|
|
*
|
|
* Copyright (c) 2006-2012, Synesis Software Pty Ltd.
|
|
* All rights reserved.
|
|
*
|
|
* www: http://www.synesis.com.au/software
|
|
*
|
|
* ////////////////////////////////////////////////////////////////////// */
|
|
|
|
|
|
#include <pantheios/util/test/compiler_warnings_suppression.first_include.h>
|
|
|
|
/* xTests Header Files */
|
|
#include <xtests/xtests.h>
|
|
|
|
/* Pantheios Header Files */
|
|
#include <pantheios/pantheios.hpp> // Pantheios C++ main header
|
|
#include <pantheios/inserters/real.hpp> // for pantheios::real
|
|
#include <pantheios/backends/bec.test.h>
|
|
|
|
/* Standard C++ Header Files */
|
|
#include <exception>
|
|
|
|
/* Standard C Header Files */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <pantheios/util/test/compiler_warnings_suppression.last_include.h>
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////
|
|
* Forward declarations
|
|
*/
|
|
|
|
static void test_1_01();
|
|
static void test_1_02();
|
|
static void test_1_03();
|
|
static void test_1_04();
|
|
static void test_1_05();
|
|
static void test_1_06();
|
|
static void test_1_07();
|
|
static void test_1_08();
|
|
static void test_1_09();
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////
|
|
* Globals
|
|
*/
|
|
|
|
PANTHEIOS_EXTERN_C PAN_CHAR_T const PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("test.component.inserters.real");
|
|
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
|
|
#define PSTR(x) PANTHEIOS_LITERAL_STRING(x)
|
|
|
|
/* /////////////////////////////////////////////////////////////////////////
|
|
* Character encoding
|
|
*/
|
|
|
|
#ifdef PANTHEIOS_USE_WIDE_STRINGS
|
|
|
|
# define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_WIDE_STRING_EQUAL
|
|
|
|
#else /* ? PANTHEIOS_USE_WIDE_STRINGS */
|
|
|
|
# define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_MULTIBYTE_STRING_EQUAL
|
|
|
|
#endif /* PANTHEIOS_USE_WIDE_STRINGS */
|
|
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int retCode = EXIT_SUCCESS;
|
|
int verbosity = 2;
|
|
|
|
XTESTS_COMMANDLINE_PARSEVERBOSITY(argc, argv, &verbosity);
|
|
|
|
if(XTESTS_START_RUNNER("test.component.inserters.real", verbosity))
|
|
{
|
|
XTESTS_RUN_CASE(test_1_01);
|
|
XTESTS_RUN_CASE(test_1_02);
|
|
XTESTS_RUN_CASE(test_1_03);
|
|
XTESTS_RUN_CASE(test_1_04);
|
|
XTESTS_RUN_CASE(test_1_05);
|
|
XTESTS_RUN_CASE(test_1_06);
|
|
XTESTS_RUN_CASE(test_1_07);
|
|
XTESTS_RUN_CASE(test_1_08);
|
|
XTESTS_RUN_CASE(test_1_09);
|
|
|
|
XTESTS_PRINT_RESULTS();
|
|
|
|
XTESTS_END_RUNNER_UPDATE_EXITCODE(&retCode);
|
|
}
|
|
|
|
return retCode;
|
|
}
|
|
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
|
|
static void test_1_01()
|
|
{
|
|
// 1. Setup
|
|
|
|
pantheios::be::test::reset();
|
|
|
|
|
|
// 2. Create test data
|
|
|
|
pantheios::log_NOTICE(pantheios::real(static_cast<float>(0)));
|
|
pantheios::log_NOTICE(pantheios::real(static_cast<double>(0)));
|
|
pantheios::log_NOTICE(pantheios::real(static_cast<long double>(0)));
|
|
|
|
|
|
// 3. Verification
|
|
|
|
pantheios::be::test::Results results = pantheios::be::test::results();
|
|
|
|
XTESTS_TEST(!results.empty());
|
|
XTESTS_TEST(3 == results.size());
|
|
XTESTS_TEST_STRING_EQUAL(PSTR("0"), results[0].statement);
|
|
XTESTS_TEST_STRING_EQUAL(PSTR("0"), results[1].statement);
|
|
XTESTS_TEST_STRING_EQUAL(PSTR("0"), results[2].statement);
|
|
}
|
|
|
|
static void test_1_02()
|
|
{
|
|
// 1. Setup
|
|
|
|
pantheios::be::test::reset();
|
|
|
|
|
|
// 2. Create test data
|
|
|
|
pantheios::log_NOTICE(pantheios::real(+1.1));
|
|
pantheios::log_NOTICE(pantheios::real(-1.1));
|
|
pantheios::log_NOTICE(pantheios::real(+0.0000001));
|
|
pantheios::log_NOTICE(pantheios::real(-0.0000001));
|
|
|
|
|
|
// 3. Verification
|
|
|
|
pantheios::be::test::Results results = pantheios::be::test::results();
|
|
|
|
XTESTS_TEST(!results.empty());
|
|
XTESTS_TEST(4 == results.size());
|
|
XTESTS_TEST_STRING_EQUAL(PSTR("1.1"), results[0].statement);
|
|
XTESTS_TEST_STRING_EQUAL(PSTR("-1.1"), results[1].statement);
|
|
// XTESTS_TEST_STRING_EQUAL(PSTR("0.0000001"), results[2].statement);
|
|
// XTESTS_TEST_STRING_EQUAL(PSTR("-0.0000001"), results[3].statement);
|
|
}
|
|
|
|
static void test_1_03()
|
|
{
|
|
}
|
|
|
|
static void test_1_04()
|
|
{
|
|
}
|
|
|
|
static void test_1_05()
|
|
{
|
|
}
|
|
|
|
static void test_1_06()
|
|
{
|
|
}
|
|
|
|
static void test_1_07()
|
|
{
|
|
}
|
|
|
|
static void test_1_08()
|
|
{
|
|
}
|
|
|
|
static void test_1_09()
|
|
{
|
|
}
|
|
|
|
/* ///////////////////////////// end of file //////////////////////////// */
|