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.
65 lines
1.8 KiB
65 lines
1.8 KiB
/* /////////////////////////////////////////////////////////////////////////
|
|
* File: test/unit/test.unit.fe.fail/test.unit.fe.fail.c
|
|
*
|
|
* Purpose: Implementation file for the test.unit.fe.fail project.
|
|
*
|
|
* Created: 14th May 2008
|
|
* Updated: 22nd March 2010
|
|
*
|
|
* Status: Wizard-generated
|
|
*
|
|
* License: (Licensed under the Synesis Software Open License)
|
|
*
|
|
* Copyright (c) 2008-2010, Synesis Software Pty Ltd.
|
|
* All rights reserved.
|
|
*
|
|
* www: http://www.synesis.com.au/software
|
|
*
|
|
* ////////////////////////////////////////////////////////////////////// */
|
|
|
|
|
|
#include <pantheios/frontends/fe.fail.h>
|
|
#include <pantheios/init_codes.h>
|
|
|
|
#include <xtests/xtests.h>
|
|
|
|
#include <stlsoft/stlsoft.h> /* for STLSOFT_NUM_ELEMENTS */
|
|
|
|
#include <stdio.h> /* for fprintf() */
|
|
#include <stdlib.h> /* for EXIT_SUCCESS, EXIT_FAILURE */
|
|
|
|
const PAN_CHAR_T PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("test.unit.fe.fail");
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int retCode = EXIT_SUCCESS;
|
|
int verbosity = 2;
|
|
|
|
XTESTS_COMMANDLINE_PARSEVERBOSITY(argc, argv, &verbosity);
|
|
|
|
if(XTESTS_START_RUNNER("test.unit.fe.fail", verbosity))
|
|
{
|
|
/* Test-1 */
|
|
if(XTESTS_CASE_BEGIN("Test-1", "Verify that the initialisation fails"))
|
|
{
|
|
void* token;
|
|
int res;
|
|
|
|
res = pantheios_fe_init(NULL, &token);
|
|
|
|
XTESTS_TEST_INTEGER_LESS(0, res);
|
|
XTESTS_TEST_INTEGER_EQUAL(PANTHEIOS_FE_INIT_RC_INTENDED_FAILURE, res);
|
|
|
|
XTESTS_CASE_END("Test-1");
|
|
}
|
|
|
|
|
|
XTESTS_PRINT_RESULTS();
|
|
|
|
XTESTS_END_RUNNER_UPDATE_EXITCODE(&retCode);
|
|
}
|
|
|
|
return retCode;
|
|
}
|
|
|
|
/* ///////////////////////////// end of file //////////////////////////// */
|