2 * Unit tests for DPA functions
4 * Copyright 2003 Uwe Bonnes
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #include "wine/test.h"
32 static INT CALLBACK dpa_strcmp(LPVOID pvstr1, LPVOID pvstr2, LPARAM flags)
34 LPCSTR str1 = (LPCSTR)pvstr1;
35 LPCSTR str2 = (LPCSTR)pvstr2;
37 return lstrcmpA (str1, str2);
44 CHAR test_str0[]="test0";
46 dpa_ret = DPA_Create(0);
47 ok((dpa_ret !=0), "DPA_Create failed");
48 int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED);
49 ok((int_ret == -1), "DPA_Search found invalid item");
50 int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTBEFORE);
51 ok((int_ret == 0), "DPA_Search proposed bad item");
52 int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTAFTER);
53 ok((int_ret == 0), "DPA_Search proposed bad item");