update test generated examples
[civicrm-core.git] / api / v3 / examples / ParticipantStatusTypeCreate.php
1 <?php
2
3 /*
4
5 */
6 function participant_status_type_create_example(){
7 $params = array(
8 'version' => 3,
9 'name' => 'test status',
10 'label' => 'I am a test',
11 'class' => 'Positive',
12 'is_reserved' => 0,
13 'is_active' => 1,
14 'is_counted' => 1,
15 'visibility_id' => 1,
16 'weight' => 10,
17 );
18
19 $result = civicrm_api( 'participant_status_type','create',$params );
20
21 return $result;
22 }
23
24 /*
25 * Function returns array of result expected from previous function
26 */
27 function participant_status_type_create_expectedresult(){
28
29 $expectedResult = array(
30 'is_error' => 0,
31 'version' => 3,
32 'count' => 1,
33 'id' => 14,
34 'values' => array(
35 '14' => array(
36 'id' => '14',
37 'name' => 'test status',
38 'label' => 'I am a test',
39 'class' => 'Positive',
40 'is_reserved' => 0,
41 'is_active' => '1',
42 'is_counted' => '1',
43 'weight' => '10',
44 'visibility_id' => '1',
45 ),
46 ),
47 );
48
49 return $expectedResult ;
50 }
51
52
53 /*
54 * This example has been generated from the API test suite. The test that created it is called
55 *
56 * testCreateParticipantStatusType and can be found in
57 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ParticipantStatusTypeTest.php
58 *
59 * You can see the outcome of the API tests at
60 * http://tests.dev.civicrm.org/trunk/results-api_v3
61 *
62 * To Learn about the API read
63 * http://book.civicrm.org/developer/current/techniques/api/
64 *
65 * and review the wiki at
66 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
67 *
68 * Read more about testing here
69 * http://wiki.civicrm.org/confluence/display/CRM/Testing
70 *
71 * API Standards documentation:
72 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
73 */