首页 > 文章列表 > 回答:我如何运行特定的phinx seeder并在phpunit中获取生成的记录?

回答:我如何运行特定的phinx seeder并在phpunit中获取生成的记录?

167 2025-03-24

这个答案解决了我遇到的一个问题:在 phpunit 上运行 phinx 播种机:

回答:我如何运行特定的phinx seeder并在phpunit中获取生成的记录? 回复回复:我如何运行特定的phinx seeder并获取phpunit中生成的记录?
回答:我如何运行特定的phinx seeder并在phpunit中获取生成的记录?
0

我有一个像你提到的情况,我需要在单元测试中在 mysql 数据库上运行播种器,因此我执行了以下步骤:

第 1 步:扩展 phinxdbadaptermysqladapter 以接受现有的 pdo 连接*

namespace Tests
use PhinxDbAdapterMysqlAdapter;

class TestAdapter extends MysqlAdapter
{
    public function __construct(PDO
打开完整答案

上面的答案也给出了这个问题的解决方案:
给定一个 pdo 实例,我如何也可以创建一个 mysqlconnectionadapter?

欢迎对上述问题提出改进或建议。这是我的一个解决方案,可能有一些警告。

来源:https://dev.to/pcmagas/answer-how-i-can-run-specific-phinx-seeder-and-get-the-generated-records-in-phpunit-4843

本类最新

查看更多