Merge pull request #17872 from eileenmcnaughton/ids
[civicrm-core.git] / tests / phpunit / api / v4 / Action / ResultTest.php
CommitLineData
e26fdc3f
CW
1<?php
2
3/*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 * $Id$
18 *
19 */
20
21
22namespace api\v4\Action;
23
24use Civi\Api4\Contact;
25use api\v4\UnitTestCase;
26
27/**
28 * @group headless
29 */
30class ResultTest extends UnitTestCase {
31
32 public function testJsonSerialize() {
33 $result = Contact::getFields()->setCheckPermissions(FALSE)->setIncludeCustom(FALSE)->execute();
34 $json = json_encode($result);
35 $this->assertStringStartsWith('[{"', $json);
36 $this->assertTrue(is_array(json_decode($json)));
37 }
38
39}