codecamp

辅助方法

TestCase 类包含几个辅助方法让应用程序的测试更为简单。

从测试里配置和刷新 Sessions

$this->session(['foo' => 'bar']);
$this->flushSession();

配置目前为通过身份验证的用户

你可以使用 be 方法配置目前为通过身份验证的用户:

$user = new User(['name' => 'John']);
$this->be($user);

你可以从测试中使用 seed 方法重新填充你的数据库:

在测试中重新填充数据库

$this->seed();
$this->seed('DatabaseSeeder');

更多建立填充数据的信息可以在文档的 迁移与数据填充 部分找到。

框架 Assertions
重置应用程序
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

环境配置

系统服务

哈希

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }