mirror of
https://github.com/nasa/trick.git
synced 2024-12-30 18:07:00 +00:00
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() {
|
|
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() {
|
|
the_unit_test_output->write_output() ;
|
|
return(0) ;
|
|
}
|
|
|