mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
fccf32093b
* Clock empty args to void * command_line func empty args to void * DataRecord func empty args to void * debug_pause func empty args to void * echojobs func empty args to void * ExternalApplication func empty args to void * FrameLog func empty args to void * MasterSlave func empty args to void * MonteCarlo func empty args to void * outdllist func proto empty args to void * sie func empty args to void * SimTime func empty args to void * UnitTest func empty args to void * var_server func empty args to void * wcs func empty args to void
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
#include "trick/UnitTest.hh"
|
|
|
|
extern Trick::UnitTest * the_unit_test_output ;
|
|
|
|
extern "C" int trick_test_enable(void) {
|
|
the_unit_test_output->enable() ;
|
|
return(0) ;
|
|
}
|
|
|
|
extern "C" int trick_test_set_file_name( const char * in_file_name ) {
|
|
the_unit_test_output->set_file_name(in_file_name) ;
|
|
return(0) ;
|
|
}
|
|
|
|
extern "C" int trick_test_set_test_name( const char * in_test_name ) {
|
|
the_unit_test_output->set_test_name(in_test_name) ;
|
|
return(0) ;
|
|
}
|
|
|
|
extern "C" int add_test_result( const char * in_test_suite_name , const char * in_test_case , const char * in_failure_string ) {
|
|
if ( in_failure_string == NULL ) {
|
|
in_failure_string = "" ;
|
|
}
|
|
the_unit_test_output->add_test_results(in_test_suite_name , in_test_case , in_failure_string ) ;
|
|
return(0) ;
|
|
}
|
|
|
|
extern "C" int trick_test_add_parent(const char * in_test_suite_name, const char * in_test_case, const char * par_num ) {
|
|
the_unit_test_output->add_test_requirements(in_test_suite_name, in_test_case, par_num);
|
|
|
|
return(0);
|
|
}
|
|
|
|
|
|
extern "C" int call_write_output(void) {
|
|
the_unit_test_output->write_output() ;
|
|
return(0) ;
|
|
}
|
|
|