测试计数大于 CodeCeption 中数据提供者的数据计数
Test count is more than data count of data-provider in CodeCeption
我在 CodeCeption 中有一个 Cest
,它使用 dataProvider
:
<?php
class MyCest
{
/**
* @param \Codeception\Example $example
* @dataProvider MyDataProvider
*/
public function MyTestCase(Codeception\Example $example)
{
echo "Name: ", $example['name'], ", Age: ", $example['age'];
}
public function MyDataProvider() {
$data = [
["name" => 'Alice', "age" => 20],
["name" => 'Tom', "age" => 35],
["name" => 'Bob', "age" => 60],
];
return $data;
}
}
如您所见,它 returns 3 个数据项,但是当我 运行 测试时,日志显示我们有 4 个测试:
zeinab@zeinab:~/PhpstormProjects/api-testing$ php vendor/bin/codecept run tests/api/MyCest.php
Codeception PHP Testing Framework v2.5.1
Powered by PHPUnit 7.1.5 by Sebastian Bergmann and contributors.
Running with seed:
Api Tests (4) --------------------------------------------------------------------------------------
✔ MyCest: My test case | "Alice",20 (0.00s)ice, Age: 20
✔ MyCest: My test case | "Tom",35 (0.00s)m, Age: 35
✔ MyCest: My test case | "Bob",60 (0.00s)b, Age: 60
✔ MyCest: My data provider (0.00s)
----------------------------------------------------------------------------------------------------
Time: 63 ms, Memory: 10.00MB
OK (4 tests, 0 assertions)
我评论了PHPUnit DataProvider documentation;它的示例暗示测试的数量等于从 dataProvider
方法返回的数据项的数量。
似乎 dataProvider
的调用本身已被计为测试用例。
Cest
class的所有public方法作为测试执行,
避免使 MyDataProvider
受保护或将其重命名为 _MyDataProvider
如 https://codeception.com/docs/07-AdvancedUsage#DataProvider-Annotations
中所述
我在 CodeCeption 中有一个 Cest
,它使用 dataProvider
:
<?php
class MyCest
{
/**
* @param \Codeception\Example $example
* @dataProvider MyDataProvider
*/
public function MyTestCase(Codeception\Example $example)
{
echo "Name: ", $example['name'], ", Age: ", $example['age'];
}
public function MyDataProvider() {
$data = [
["name" => 'Alice', "age" => 20],
["name" => 'Tom', "age" => 35],
["name" => 'Bob', "age" => 60],
];
return $data;
}
}
如您所见,它 returns 3 个数据项,但是当我 运行 测试时,日志显示我们有 4 个测试:
zeinab@zeinab:~/PhpstormProjects/api-testing$ php vendor/bin/codecept run tests/api/MyCest.php
Codeception PHP Testing Framework v2.5.1
Powered by PHPUnit 7.1.5 by Sebastian Bergmann and contributors.
Running with seed:
Api Tests (4) --------------------------------------------------------------------------------------
✔ MyCest: My test case | "Alice",20 (0.00s)ice, Age: 20
✔ MyCest: My test case | "Tom",35 (0.00s)m, Age: 35
✔ MyCest: My test case | "Bob",60 (0.00s)b, Age: 60
✔ MyCest: My data provider (0.00s)
----------------------------------------------------------------------------------------------------
Time: 63 ms, Memory: 10.00MB
OK (4 tests, 0 assertions)
我评论了PHPUnit DataProvider documentation;它的示例暗示测试的数量等于从 dataProvider
方法返回的数据项的数量。
似乎 dataProvider
的调用本身已被计为测试用例。
Cest
class的所有public方法作为测试执行,
避免使 MyDataProvider
受保护或将其重命名为 _MyDataProvider
如 https://codeception.com/docs/07-AdvancedUsage#DataProvider-Annotations