PHPUnit Unit Test

Source: Internet
Author: User

Unit Test PHPUnit

<?PHP/** * Define a class to be tested Remoteconnect * @author JSON **/classremoteconnect{ Public functionConnectServer ($serverName=NULL){        if($serverName==NULL){            Throw New Exception("This was not a server name!"); }                $fp=Fsockopen($serverName, 80); return $fp?true:false; }         Public functionReturnsampleobject () {return $this; }}/** * Define a class to test remoteconnect, * but inherit phpunit_framework_testcase. * @author JSON * class name ends with Test * $this->asserttrue: Is the method of unit testing, there are many such methods. * Module installation and usage see PHPUnit official website. */classRemoteconnecttestextendsphpunit_framework_testcase{ Public functionsetUp () {} Public functionTearDown () {}//Test to ensure this from the object is valid.     Public functionTestconnectisvalid () {Echo"Jaja"; Try{            $CONNOBJ=NewRemoteconnect (); $serverName=NULL; $this->asserttrue ($CONNOBJ->connectserver ($serverName) !==false); }Catch(Exception $e){            $e-GetMessage (); }    }     Public functiontestabc () {$this->asserttrue (3+2 = = 5); }    }?>

PHPUnit Unit Test

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.