1 /* 2 * Check: a unit test framework for C 3 * Copyright (C) 2001, 2002 Arien Malec 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2.1 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, write to the 17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 18 * MA 02110-1301, USA. 19 */ 20 21 #ifndef CHECK_LOG_H 22 #define CHECK_LOG_H 23 24 void log_srunner_start (SRunner * sr); 25 void log_srunner_end (SRunner * sr); 26 void log_suite_start (SRunner * sr, Suite * s); 27 void log_suite_end (SRunner * sr, Suite * s); 28 void log_test_end (SRunner * sr, TestResult * tr); 29 void log_test_start (SRunner * sr, TCase * tc, TF * tfun); 30 31 void stdout_lfun (SRunner * sr, FILE * file, enum print_output, 32 void *obj, enum cl_event evt); 33 34 void lfile_lfun (SRunner * sr, FILE * file, enum print_output, 35 void *obj, enum cl_event evt); 36 37 void xml_lfun (SRunner * sr, FILE * file, enum print_output, 38 void *obj, enum cl_event evt); 39 40 void tap_lfun (SRunner * sr, FILE * file, enum print_output, 41 void *obj, enum cl_event evt); 42 43 void subunit_lfun (SRunner * sr, FILE * file, enum print_output, 44 void *obj, enum cl_event evt); 45 46 void srunner_register_lfun (SRunner * sr, FILE * lfile, int close, 47 LFun lfun, enum print_output); 48 49 FILE *srunner_open_lfile (SRunner * sr); 50 FILE *srunner_open_xmlfile (SRunner * sr); 51 FILE *srunner_open_tapfile (SRunner * sr); 52 void srunner_init_logging (SRunner * sr, enum print_output print_mode); 53 void srunner_end_logging (SRunner * sr); 54 55 #endif /* CHECK_LOG_H */ 56