imjoehaines/flowdception
最新稳定版本:v1.0.1
Composer 安装命令:
composer require --dev imjoehaines/flowdception
包简介
A Codeception Extension for Flowder
README 文档
README
Flowdception is a Codeception Extension for integrating the Flowder fixture loader into Codeception test suites.
Usage
-
Install Flowdception as a development dependency through Composer
$ composer install imjoehaines/flowdception --dev
-
Enable Flowdception as an extension in your main
codeception.yml, or a specific suite's YAML configuration file (e.g.integration.suite.yml)extensions: enabled: - \Imjoehaines\Flowder\Codeception\Flowdception
-
Bootstrap Flowdception by calling
Flowdception::bootsrapin one of your_bootstrap.phpCodeception files, passing in an instance of\Imjoehaines\Flowder\Flowder(see the Flowder documentation for more information).A simple SQLite example might look like this:
<?php require __DIR__ . '/../vendor/autoload.php'; use Imjoehaines\Flowder\Codeception\Flowdception; use Imjoehaines\Flowder\Loader\PhpFileLoader; use Imjoehaines\Flowder\Truncator\SqliteTruncator; use Imjoehaines\Flowder\Persister\SqlitePersister; $db = new PDO(...); $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); Flowdception::bootstrap( __DIR__ . '/_data/example.php', new PhpFileLoader(), new SqliteTruncator($db), new SqlitePersister($db) );
-
That's it! Before any Codeception test file runs, Flowder will load your fixture data for you
统计信息
- 总下载量: 180.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: Unlicense
- 更新时间: 2017-03-21