- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/hmlb/phpunit-vw
软件介绍
phpunit-vw 是 Phpunit VW 扩展,帮助你在 CI 工具检测的时候顺利通过测试。
示例:
class VWTest extends PHPUnit_Framework_TestCase
{
private $emissions = 12000;
private $legalLimit = 300;
public function testEnvironmentalImpactCompliance()
{
$this->assertLessThan($this->legalLimit, $this->emissions);
}
}开发环境:
CI 环境:
使用:
<phpunit bootstrap="vendor/autoload.php"> ... <listeners> <listener class="HMLB\PHPUnit\Listener\VWListener" /> </listeners> </phpunit>
当前支持的 CI 环境:
TravisCI
Appveyor
Bamboo
Buildkite
CircleCI
CodeShip
GitlabCI
Go CD
Hudson
Jenkins
PHPCI
TeamCity
了不起的Node.js
劳奇 (Guillermo Rauch) / 赵静 / 电子工业出版社 / 2014-1 / 79.00元
本书是一本经典的 Learning by Doing的书籍。它由 Node社区著名的 Socket.IO作者—— Guillermo Rauch,通过大量的实践案例撰写,并由 Node社区非常活跃的开发者—— Goddy Zhao翻译而成。 本书内容主要由对五大部分的介绍组成: Node核心设计理念、 Node核心模块 API、Web开发、数据库以及测试。从前到后、由表及里地对使用 Node......一起来看看 《了不起的Node.js》 这本书的介绍吧!


