はてなブログ トップ
simpletest
このタグでブログを書く
言葉の解説
ネットで話題
関連ブログ
simpletest
(コンピュータ)
【しんぷるてすと】
PHPのユニットテスティングフレームワーク。
このタグの解説について
この解説文は、
すでに終了したサービス「はてなキーワード」内で有志のユーザーが作成・編集
した内容に基づいています。その正確性や網羅性をはてなが保証するものではありません。問題のある記述を発見した場合には、
お問い合わせフォーム
よりご連絡ください。
解説の続きを読む
ネットで話題
もっと見る
47
ブックマーク
PHPのUnitTestにSimpleTestがいい感じ
SimpleTest – Unit Testing for PHP symfonyのUnitTestにも使われているSimpleTestがその名の通りシンプルでいい感じです。 ダウンロードして解凍して適当なディレクトリに置くだけ。 ドキュメントにもサンプルは書いてありますが、CLI(シェル)で使うならこんな具合。 require_once 'simpletest/unit_tester.php'; req...
blog.zuzara.com
31
ブックマーク
SimpleTest - Unit Testing for PHP
SimpleTest 1.1.0 is available. It's a PHP5 only release (PHP 5.0.5+ to be precise). SimpleTest 1.0.1 has been released. This is the last PHP 4 compatible release. Familiar with unit testing ? Just dive directly into SimpleTest with the one-page starter and the complete API. Otherwise see the ongo...
www.simpletest.org
23
ブックマーク
CakePHP1.2 SimpleTest でテストケースを作成する | Sun Limited Mt.
CakePHP1.2 に SimpleTest をインストール で SimpleTest をインストールするところまでやったので、今度は実際にテストケースを作成してみます。 空のテストケースを作成する app/test/cases/models に user.test.php を作成して以下のコードで保存する。 <?php class UserTest extends User { } ?> test.php にアクセ...
blog.syuhari.jp
20
ブックマーク
SimpleTest便利ざます〜 - がるの健忘録
gallu.hatenadiary.jp
18
ブックマーク
SimpleTest - Unit Testing for PHP
SimpleTest 1.1alpha is available. This is the first PHP5 only release (PHP 5.0.5+ to be precise). SimpleTest 1.0.1 has been released. This is the last PHP 4 compatible release. Familiar with unit testing ? Just dive directly into SimpleTest with the one-page starter and the complete API. Otherwis...
simpletest.sourceforge.net
18
ブックマーク
SimpleTest - Unit Testing for PHP
SimpleTest 1.1.0 is available. It's a PHP5 only release (PHP 5.0.5+ to be precise). SimpleTest 1.0.1 has been released. This is the last PHP 4 compatible release. Familiar with unit testing ? Just dive directly into SimpleTest with the one-page starter and the complete API. Otherwise see the ongo...
simpletest.org
17
ブックマーク
CakePHP1.2でbakeしている人のための簡単SimpleTest その1 | ねねとまつの小部屋
by 赤がすき Published 7 月 16th, 2008 in 1.2, PHP, SimpleTest, cakephp, テスト | (4) (0) (3) (0) Total: 7 CakePHP1.2 RC2で試しました。 SimpleTestの題材となるcakeアプリはなんでも良いのですが、 bakeで作ると、コントローラー、fixtureを使ったモデルのテストのスケルトンまで作ってくれるので、楽だよね 、...
blog.ne2ma2.com
17
ブックマーク
Overview and feature list for the SimpleTest PHP unit tester and web tester
このページは PHP用のSimpleTestツールの 要約 現在のものと計画されている 特徴のリスト, ウェブ上にはたくさんの ユニットテストリソース があります SimpleTest とは? SimpleTestの中心は、テストケースクラスで構成されるテスティングフレームワークです。 これらは、基本テストケースクラスの継承クラスとして書か...
bobchin.ddo.jp
15
ブックマーク
CakePHP1.2 SimpleTest 値を検証する assert?メソッド | Sun Limited Mt.
SimpleTest で使用する値を検証する assert?メソッド assertTure boolean assertTrue(boolean $result, [string $message]) $result が true か assertFalse boolean assertFalse(boolean $result, [string $message]) $result が false か assertNull boolean assertNull(boolean $result, [string $message]) $result ...
blog.syuhari.jp