00001 /* 00002 * CUnit - A Unit testing framework library for C. 00003 * Copyright (C) 2001 Anil Kumar 00004 * Copyright (C) 2004,2005 Anil Kumar, Jerry St.Clair 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 */ 00020 00021 /* 00022 * Contains Interface for console Run tests. 00023 * 00024 * Created By : Anil Kumar on ...(in month of Aug 2001) 00025 * Last Modified : 09/Aug/2001 00026 * Comment : Single interface to Console_run_tests 00027 * EMail : aksaharan@yahoo.com 00028 * 00029 * Modified : 18-Jul-2004 (JDS) 00030 * Comment : New interface 00031 * EMail : jds2@users.sourceforge.net 00032 * 00033 * Modified : 21-Apr-2005 (JDS) 00034 * Comment : Changed header name to avoid clash with system curses.h 00035 * EMail : jds2@users.sourceforge.net 00036 */ 00037 00045 #ifndef _CUNIT_CURSES_H 00046 #define _CUNIT_CURSES_H 00047 00048 #include "CUnit.h" 00049 #include "TestDB.h" 00050 00051 #ifdef __cplusplus 00052 extern "C" { 00053 #endif 00054 00055 void CU_curses_run_tests(void); 00056 00057 #ifdef USE_DEPRECATED_CUNIT_NAMES 00058 00059 #define curses_run_tests() CU_curses_run_tests() 00060 #endif 00061 00062 #ifdef __cplusplus 00063 } 00064 #endif 00065 00066 #endif /* _CUNIT_CONSOLE_H */ 00067