PHP simpletest unit test

Source: Internet
Author: User

Simpletest unittest has always heard of these things, but it's a pity that we don't have time to study them (excuses ). I have to study it for the first time.

Direct code:

<? PHP  Require_once ('Simpletest/Autorun. php' );  Class  Test {  Public   Function Testfun ( $ , $ B  ){  Return   $ +$ B  ;}}  //  Inherit from the unittestcase class  Class Myfirstunittest Extends  Unittestcase {  Function Baicunittest ( $ Name ='' ){  $ This -> Unittestcase ( $ Name ); //  $ Name is displayed as the heading of the test page }  Function  Testequal (){  $ Testins = New  Test ();  $ This -> Assertequal (25, $ Testins -> Testfun (10, 15 ));}}  $ Test = New  Basicunittest ();  $ Test -> Run ( New Htmlreporter ()); ?>

Page display:

No technical content. Here, I just tested whether the method returned by the test class is equal to the expected value.

In other cases$ This-> Assertequal (25,$ Testins-> Testfun (10, 15); Replace assertequal with other details. For more information, see ---- official manual. Here is just a brick-and --

The above class can be replaced with include_once ('class to be tested. Class. php ');

Officially, every test file is put in a test folder for later maintenance.

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.