update test generated examples
[civicrm-core.git] / api / v3 / examples / Address / AddressLike.php
1 <?php
2
3 /*
4 Demonstrates Use of Like
5 */
6 function address_get_example(){
7 $params = array(
8 'street_address' => array(
9 'LIKE' => '%mb%',
10 ),
11 'version' => 3,
12 'sequential' => 1,
13 );
14
15 $result = civicrm_api( 'address','get',$params );
16
17 return $result;
18 }
19
20 /*
21 * Function returns array of result expected from previous function
22 */
23 function address_get_expectedresult(){
24
25 $expectedResult = array(
26 'is_error' => 0,
27 'version' => 3,
28 'count' => 1,
29 'id' => 10,
30 'values' => array(
31 '0' => array(
32 'id' => '10',
33 'contact_id' => '12',
34 'location_type_id' => '15',
35 'is_primary' => '1',
36 'is_billing' => 0,
37 'street_address' => 'Ambachtstraat 23',
38 'street_number' => '23',
39 'street_name' => 'Ambachtstraat',
40 'city' => 'Brummen',
41 'postal_code' => '6971 BN',
42 'country_id' => '1152',
43 'manual_geo_code' => 0,
44 ),
45 ),
46 );
47
48 return $expectedResult ;
49 }
50
51
52 /*
53 * This example has been generated from the API test suite. The test that created it is called
54 *
55 * testGetAddressLikeSuccess and can be found in
56 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/AddressTest.php
57 *
58 * You can see the outcome of the API tests at
59 * http://tests.dev.civicrm.org/trunk/results-api_v3
60 *
61 * To Learn about the API read
62 * http://book.civicrm.org/developer/current/techniques/api/
63 *
64 * and review the wiki at
65 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
66 *
67 * Read more about testing here
68 * http://wiki.civicrm.org/confluence/display/CRM/Testing
69 *
70 * API Standards documentation:
71 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
72 */