SkipTests.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Http_Client
  17. * @subpackage UnitTests
  18. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * @category Zend
  24. * @package Zend_Http_Client
  25. * @subpackage UnitTests
  26. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  27. * @license http://framework.zend.com/license/new-bsd New BSD License
  28. * @group Zend_Http
  29. * @group Zend_Http_Client
  30. */
  31. class Zend_Http_Client_Skip_SocketTest extends PHPUnit_Framework_TestCase
  32. {
  33. public function setUp()
  34. {
  35. $this->markTestSkipped("Zend_Http_Client dynamic tests are not enabled in TestConfiguration.php");
  36. }
  37. public function testSocket()
  38. {
  39. // this is here only so we have at least one test
  40. }
  41. }
  42. /**
  43. * @category Zend
  44. * @package Zend_Http_Client
  45. * @subpackage UnitTests
  46. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  47. * @license http://framework.zend.com/license/new-bsd New BSD License
  48. * @group Zend_Http
  49. * @group Zend_Http_Client
  50. */
  51. class Zend_Http_Client_Skip_ProxyAdapterTest extends PHPUnit_Framework_TestCase
  52. {
  53. public function setUp()
  54. {
  55. $this->markTestSkipped("Zend_Http_Client proxy server tests are not enabled in TestConfiguration.php");
  56. }
  57. public function testProxyAdapter()
  58. {
  59. // this is here only so we have at least one test
  60. }
  61. }