mglaman/drupal-test-helpers
最新稳定版本:1.0.4
Composer 安装命令:
composer require mglaman/drupal-test-helpers
包简介
Helpers for writing better Kernel and Unit tests for Drupal
README 文档
README
Helpers for writing better Kernel and Unit tests for Drupal
Traits
The following traits are provided by this library for tests
RequestTrait
Provides methods to assert requests and responses within Kernel tests.
final class RequestTraitTest extends KernelTestBase { use RequestTrait; /** * @var string[] */ protected static $modules = ['system', 'user']; public function testDoRequest(): void { $this->installConfig(['system']); $this->doRequest(Request::create('/user/login')); self::assertStringContainsString( 'Enter your username.', $this->getRawContent() ); } }
统计信息
- 总下载量: 4.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 0
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-08