模拟测试对象的PHP库.zip

时间:2022-07-31 05:01:00
【文件属性】:

文件名称:模拟测试对象的PHP库.zip

文件大小:522KB

文件格式:ZIP

更新时间:2022-07-31 05:01:00

类库下载-模拟测试对象的PHP库

Samsui 是一个用于建立对构建你的应用程序测试数据有用的 PHP 对象库。通过 Samsui,你可以快速建立原型应用,产生你测试原型所需要的数据。use Samsui\Factory;   $factory = new Factory();   // define an object quickly $factory->define('person')     ->sequence('personId')     ->attr('firstName', 'James')     ->attr('lastName', 'Clark')     ->attr('email', function ($i, $o) {         return strtolower($o->firstName . '.' . $o->lastName . '@example.com');     })     ->attr('createdTime', function () {         return time();     });


网友评论