承接 merkushin/php-easyest 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

merkushin/php-easyest

Composer 安装命令:

composer create-project merkushin/php-easyest

包简介

PHP: The Easy Test

README 文档

README

The experimental tool for writing tests easily.

It uses PHP attributes for simpler organising and running tests.

Current implementation is extremely naive and allows writing test using functions.

Run tests in ./tests directory with ./vendor/autoload.php bootstrap script:

./vendor/bin/easytest ./tests ./vendor/autoload.php

Tests exmple:

<?php

namespace \TestNamespace\Example1;

use EasyTest\Attribute\Fixture;
use EasyTest\Attribute\Test;

#[Fixture]
function num(): int {
    return 1;
}

#[Test]
function test_is_one(int $num): void {
    assert($num === 1);
}

You can use #[Setup], #[TearDown] and #[Ignore] attributes to define correspoding functions or ignore ones.

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2022-08-12