作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了测试:
$response = $this->get('/something');
$response->assertStatus(200);
它显示此错误:
Error: Call to undefined method Tests\Unit\SomeTest::assertStatus()
我找到了解决问题的方法(下面的代码),但是我想使用第一种方法:
$response = $this->get('/something');
$this->assertEquals(200, $this->response->status());
为什么第一个代码不起作用?
最佳答案
我通过将use PHPUnit\Framework\TestCase
更改为use Tests\TestCase
来解决它。
关于php - 错误:调用未定义的方法Tests\Unit\SomeTest::assertStatus(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59074162/
我正在使用 Lumen 进行 api 构建,并且还想为此编写单元测试用例。但我面临的问题是没有一个断言方法有效。如 assertStatus()、assertNotFound()、assertJson
我写了测试: $response = $this->get('/something'); $response->assertStatus(200); 它显示此错误: Error: Call to un
我是一名优秀的程序员,十分优秀!