标签:期望 ons 它的 结果的处理 existing stc xtend ase bst
1、我的疑问:什么是测试套件
测试套件,是一套业务逻辑验证时,所需要的测试用例,包含测试逻辑、测试预期、测试结果。
一个套件里面,由多个测试类集合,一个测试类中可以有多个测试实例,因此可以测试多个测试类的多个逻辑
2、开始看phpnuit
phpunit 的五个基础类和接口
* <?php * class MathTest extends PHPUnit\Framework\TestCase * { * public $value1; * public $value2; * * protected function setUp() * { * $this->value1 = 2; * $this->value2 = 3; * } * }
从类名看,这是一个单元测试(测方法的)的基类(暂时不学,所以不看了)
/** * Constructs a new TestSuite: * * - PHPUnit\Framework\TestSuite() constructs an empty TestSuite. * * - PHPUnit\Framework\TestSuite(ReflectionClass) constructs a * TestSuite from the given class. * * - PHPUnit\Framework\TestSuite(ReflectionClass, String) * constructs a TestSuite from the given class with the given * name. * * - PHPUnit\Framework\TestSuite(String) either constructs a * TestSuite from the given class (if the passed string is the * name of an existing class) or constructs an empty TestSuite * with the given name. */
从注释看,传入的参数是个类,那么,测试的对象很可能是接口之类的或者一套被测方法,而接口测试其实是一串测试方法的测试(所以,这个是接口测试要学的吧)
标签:期望 ons 它的 结果的处理 existing stc xtend ase bst
原文地址:https://www.cnblogs.com/ansonwan/p/13285302.html