如何在Laravel中检测TestCase的最后一次测试?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Laravel中检测TestCase的最后一次测试?相关的知识,希望对你有一定的参考价值。
我可以轻松检测到第一次测试:
public static $databaseMigrated = false;
protected function setUp()
{
parent::setUp();
if (TestCase::$databaseMigrated === false) {
$this->migrateDatabase();
TestCase::$databaseMigrated = true;
}
}
但有人知道如何检测上次测试吗?
protected function tearDown()
{
// something here ? ?
}
答案
解决方案是:
public static $databaseMigrated = false;
public function setUp()
{
parent::setUp();
if (TestCase::$databaseMigrated === false) {
TestCase::$databaseMigrated = true;
register_shutdown_function(function(){
//register wanted code here
});
});
}
以上是关于如何在Laravel中检测TestCase的最后一次测试?的主要内容,如果未能解决你的问题,请参考以下文章
PhpStorm Laravel 4.2 致命错误:找不到类“TestCase”
在运行 laravel phpunit testcase 时,我在 Model.php 第 1249 行收到错误“调用 null 上的成员函数 connection()”
在 XCUI TestCase 期间最后停止在 UITableView 上滚动