1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_FirebaseRules_TestCase extends Google_Collection
19{
20  protected $collection_key = 'functionMocks';
21  public $expectation;
22  public $expressionReportLevel;
23  protected $functionMocksType = 'Google_Service_FirebaseRules_FunctionMock';
24  protected $functionMocksDataType = 'array';
25  public $pathEncoding;
26  public $request;
27  public $resource;
28
29  public function setExpectation($expectation)
30  {
31    $this->expectation = $expectation;
32  }
33  public function getExpectation()
34  {
35    return $this->expectation;
36  }
37  public function setExpressionReportLevel($expressionReportLevel)
38  {
39    $this->expressionReportLevel = $expressionReportLevel;
40  }
41  public function getExpressionReportLevel()
42  {
43    return $this->expressionReportLevel;
44  }
45  /**
46   * @param Google_Service_FirebaseRules_FunctionMock[]
47   */
48  public function setFunctionMocks($functionMocks)
49  {
50    $this->functionMocks = $functionMocks;
51  }
52  /**
53   * @return Google_Service_FirebaseRules_FunctionMock[]
54   */
55  public function getFunctionMocks()
56  {
57    return $this->functionMocks;
58  }
59  public function setPathEncoding($pathEncoding)
60  {
61    $this->pathEncoding = $pathEncoding;
62  }
63  public function getPathEncoding()
64  {
65    return $this->pathEncoding;
66  }
67  public function setRequest($request)
68  {
69    $this->request = $request;
70  }
71  public function getRequest()
72  {
73    return $this->request;
74  }
75  public function setResource($resource)
76  {
77    $this->resource = $resource;
78  }
79  public function getResource()
80  {
81    return $this->resource;
82  }
83}
84