gpt4 book ai didi

PHPUnit -setUp() - 它在每个测试用例之前和之后运行吗?

转载 作者:行者123 更新时间:2023-12-04 05:47:56 26 4
gpt4 key购买 nike

我对 setup() 还是有点困惑在 PHPUnit 中。

是否运行之前 之后 每个 测试用例?

例如,我想在每次测试之前清理我的文章表,但我想保留我已经注入(inject)表中的测试数据。因为我只想清洁它直到下一次测试。

我的测试,

namespace Test\Foo\Article;

use Test\SuiteTest;
use Foo\Article;

class ArticleTest extends SuiteTest
{
protected static $Article;

/**
* Call this template method before each test method is run.
*/
protected function setUp()
{
$this->truncateTables(
[
'article'
]
);

self::$Article = new Article(self::$PDO);
}

public function testFetchRow()
{
self::$Article->createRow(
[
':title' => 'Hello World',
':description' => 'Hello World',
':content' => 'Hello World'
]
);

$result = self::$Article->fetchRow(
[
':article_id' => self::$PDO->fetchLastInsertId()
]
);

$this->assertArrayHasKey('article_id', $result);

$expected = 12; // 12 keys associate with values in the array
$this->assertEquals($expected, count($result));
}
}

我查看我的文章表,有 没有测试数据了,看来 setup()已经清理干净了。它应该如何工作?
tearDown() 呢? - 是否意味着运行 之后 每个 测试用例?

最佳答案

setUp()在每个测试方法之前运行,tearDown()在每个测试方法之后运行。

PHPUnit 手册 - 第 4 章修复:

Before a test method is run, a template method called setUp() is invoked



...

Once the test method has finished running, whether it succeeded or failed, another template method called tearDown() is invoked



https://phpunit.de/manual/current/en/fixtures.html

关于PHPUnit -setUp() - 它在每个测试用例之前和之后运行吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33034685/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com