PHPUnit
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(PHPUnit);
*目次 [#raf85d87]
#contents
*関連ページ [#y301e833]
*参考情報 [#y0750d60]
-[[PHP開発者のためのテストのすゝめ(2):PHPUnitでユニット...
*インストール [#h8cb67c2]
pearでインストールする。
-チャンネル追加
$ sudo pear channel-discover pear.phpunit.de
$ sudo pear channel-discover pear.symfony-project.com
$ sudo pear channel-discover pear.symfony.com
-インストール
$ sudo pear install --alldeps phpunit/PHPUnit
*入門 [#ce4493e0]
-PHPUnit 4では冒頭のフレームワークの読み込みは必要ないっ...
#pre{{
<?php
require_once 'Employee.php';
class EmployeeTest extends PHPUnit_Framework_TestCase
{
public function testSample()
{
$this->assertTrue(false);
}
}
?>
}}
-phpunitで直接実行
phpunit EmployeeTest.php
終了行:
&tag(PHPUnit);
*目次 [#raf85d87]
#contents
*関連ページ [#y301e833]
*参考情報 [#y0750d60]
-[[PHP開発者のためのテストのすゝめ(2):PHPUnitでユニット...
*インストール [#h8cb67c2]
pearでインストールする。
-チャンネル追加
$ sudo pear channel-discover pear.phpunit.de
$ sudo pear channel-discover pear.symfony-project.com
$ sudo pear channel-discover pear.symfony.com
-インストール
$ sudo pear install --alldeps phpunit/PHPUnit
*入門 [#ce4493e0]
-PHPUnit 4では冒頭のフレームワークの読み込みは必要ないっ...
#pre{{
<?php
require_once 'Employee.php';
class EmployeeTest extends PHPUnit_Framework_TestCase
{
public function testSample()
{
$this->assertTrue(false);
}
}
?>
}}
-phpunitで直接実行
phpunit EmployeeTest.php
ページ名: