Bez popisu

TestSpecification.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. class Google_Service_Testing_TestSpecification extends Google_Model
  18. {
  19. protected $androidInstrumentationTestType = 'Google_Service_Testing_AndroidInstrumentationTest';
  20. protected $androidInstrumentationTestDataType = '';
  21. protected $androidRoboTestType = 'Google_Service_Testing_AndroidRoboTest';
  22. protected $androidRoboTestDataType = '';
  23. protected $androidTestLoopType = 'Google_Service_Testing_AndroidTestLoop';
  24. protected $androidTestLoopDataType = '';
  25. public $autoGoogleLogin;
  26. public $disablePerformanceMetrics;
  27. public $disableVideoRecording;
  28. protected $testSetupType = 'Google_Service_Testing_TestSetup';
  29. protected $testSetupDataType = '';
  30. public $testTimeout;
  31. /**
  32. * @param Google_Service_Testing_AndroidInstrumentationTest
  33. */
  34. public function setAndroidInstrumentationTest(Google_Service_Testing_AndroidInstrumentationTest $androidInstrumentationTest)
  35. {
  36. $this->androidInstrumentationTest = $androidInstrumentationTest;
  37. }
  38. /**
  39. * @return Google_Service_Testing_AndroidInstrumentationTest
  40. */
  41. public function getAndroidInstrumentationTest()
  42. {
  43. return $this->androidInstrumentationTest;
  44. }
  45. /**
  46. * @param Google_Service_Testing_AndroidRoboTest
  47. */
  48. public function setAndroidRoboTest(Google_Service_Testing_AndroidRoboTest $androidRoboTest)
  49. {
  50. $this->androidRoboTest = $androidRoboTest;
  51. }
  52. /**
  53. * @return Google_Service_Testing_AndroidRoboTest
  54. */
  55. public function getAndroidRoboTest()
  56. {
  57. return $this->androidRoboTest;
  58. }
  59. /**
  60. * @param Google_Service_Testing_AndroidTestLoop
  61. */
  62. public function setAndroidTestLoop(Google_Service_Testing_AndroidTestLoop $androidTestLoop)
  63. {
  64. $this->androidTestLoop = $androidTestLoop;
  65. }
  66. /**
  67. * @return Google_Service_Testing_AndroidTestLoop
  68. */
  69. public function getAndroidTestLoop()
  70. {
  71. return $this->androidTestLoop;
  72. }
  73. public function setAutoGoogleLogin($autoGoogleLogin)
  74. {
  75. $this->autoGoogleLogin = $autoGoogleLogin;
  76. }
  77. public function getAutoGoogleLogin()
  78. {
  79. return $this->autoGoogleLogin;
  80. }
  81. public function setDisablePerformanceMetrics($disablePerformanceMetrics)
  82. {
  83. $this->disablePerformanceMetrics = $disablePerformanceMetrics;
  84. }
  85. public function getDisablePerformanceMetrics()
  86. {
  87. return $this->disablePerformanceMetrics;
  88. }
  89. public function setDisableVideoRecording($disableVideoRecording)
  90. {
  91. $this->disableVideoRecording = $disableVideoRecording;
  92. }
  93. public function getDisableVideoRecording()
  94. {
  95. return $this->disableVideoRecording;
  96. }
  97. /**
  98. * @param Google_Service_Testing_TestSetup
  99. */
  100. public function setTestSetup(Google_Service_Testing_TestSetup $testSetup)
  101. {
  102. $this->testSetup = $testSetup;
  103. }
  104. /**
  105. * @return Google_Service_Testing_TestSetup
  106. */
  107. public function getTestSetup()
  108. {
  109. return $this->testSetup;
  110. }
  111. public function setTestTimeout($testTimeout)
  112. {
  113. $this->testTimeout = $testTimeout;
  114. }
  115. public function getTestTimeout()
  116. {
  117. return $this->testTimeout;
  118. }
  119. }