PHP单元测试利器 PHPUNIT初探第1/2页(2)

PHP单元测试利器 PHPUNIT初探第1/2页

<?php

PHP单元测试利器 PHPUNIT初探第1/2页

require_once('RemoteConnect.php');

PHP单元测试利器 PHPUNIT初探第1/2页

class RemoteConnectTest extends PHPUnit_Framework_TestCase

PHP单元测试利器 PHPUNIT初探第1/2页

{

PHP单元测试利器 PHPUNIT初探第1/2页

  
publicfunction setUp(){ }

PHP单元测试利器 PHPUNIT初探第1/2页

  
publicfunction tearDown(){ }

PHP单元测试利器 PHPUNIT初探第1/2页

  
publicfunction testConnectionIsValid()

PHP单元测试利器 PHPUNIT初探第1/2页

  {

PHP单元测试利器 PHPUNIT初探第1/2页

    
// test to ensure that the object from an fsockopen is valid

PHP单元测试利器 PHPUNIT初探第1/2页

    $connObj=new RemoteConnect();

PHP单元测试利器 PHPUNIT初探第1/2页

    
$serverName='';

PHP单元测试利器 PHPUNIT初探第1/2页

    
$this->assertTrue($connObj->connectToServer($serverName) !==false);

PHP单元测试利器 PHPUNIT初探第1/2页

  }

PHP单元测试利器 PHPUNIT初探第1/2页

}

PHP单元测试利器 PHPUNIT初探第1/2页

?>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/d80710d27f8f0acfd473ee879822dc07.html