1 /* 2 * Copyright (C) 2007 - 2013 Vivien Malerba <malerba@gnome-db.org> 3 * Copyright (C) 2011 Murray Cumming <murrayc@murrayc.com> 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * as published by the Free Software Foundation; either version 2 8 * of the License, or (at your option) any later version. 9 * 10 * This program 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 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 18 */ 19 #ifndef __PROV_TEST_COMMON_H__ 20 #define __PROV_TEST_COMMON_H__ 21 22 #include <string.h> 23 #include <glib.h> 24 #include <libgda/libgda.h> 25 #include "prov-test-util.h" 26 27 int prov_test_common_setup (void); 28 GdaConnection *prov_test_common_create_extra_connection (void); 29 int prov_test_common_load_data (void); 30 int prov_test_common_check_meta (void); 31 int prov_test_common_check_meta_identifiers (gboolean case_sensitive, gboolean update_all); 32 int prov_test_common_check_cursor_models (void); 33 int prov_test_common_check_data_select (void); 34 int prov_test_common_check_timestamp (void); 35 int prov_test_common_check_date (void); 36 int prov_test_common_clean (void); 37 38 #endif 39