Download the PHP package fw3_for_old/ez_test without Composer

On this page you can find all versions of the php package fw3_for_old/ez_test. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package ez_test

Flywheel3 Eazy Unit test tool for old php versions

Rapid Development FrameworkであるFlywheel3 の簡易Unit test ツールです。

対象バージョンおよび動作確認バージョン

対象バージョン:PHP5.3.3以降

動作確認バージョン

主な機能

TestRunner

Windows、Unix系OSを問わずに動作するPHPUnitに似たアサーションを持つUnitTest実行器です。

テストケース内のNGとなった行と行が含まれるメソッド名までを出力するため、NG発生時の追跡が用意になっています。

また、PHP5.3.0以降、少なくともPHP8.0.3までは確実に動作するため、PHPのVersion Upに伴う、事前・事後検証を簡単に行う事が出来ます。

実行後例(成功時)

実行後例(失敗時)

使い方

1 . インストール

composerを使用できる環境の場合

次のコマンドを実行し、インストールしてください。

composer require fw3_for_old/ez_test

composerを使用できない環境の場合

Download ZIPよりzipファイルをダウンロードし、任意のディレクトリにコピーしてください。

使用対象となる処理より前にrequire_once sprintf('%s/src/ez_test_require_once.php', $path_to_copy_dir);としてsrc/ez_test_require_once.phpを読み込むようにしてください。

2 . テストの作成と実施

  1. 次の構造のディレクトリツリーとなっている前提で解説します。

この構造のうち、composer.jsonが置いてあるディレクトリをカレントディレクトリとします。

実用にあたっては適宜読み替えてください。

併せて次のディレクトリを作成してください。

  1. testsディレクトリにブートストラップファイルを作成します。

次の内容でrun_test.phpとしてファイルを作成してください。

composerを使用できる環境の場合

composerを使用できない環境の場合

  1. tests/casesディレクトリにテストケースを作成します。

tests/casesディレクトリの中に\fw3_for_old\test_unit\AbstractTestを継承したクラスを作成してください。 その際、テストケースとテストクラス名は同一にしてください。

テストクラスは末尾がTestである必要があります。

併せてテストクラスの中にテストメソッドを記述してください。

テストメソッドはtestから始まるメソッド名である必要があります。

tests/cases以下にディレクトリはあってもなくても構いません。

fw3_for_old/ez_testはデフォルトではTestRunner::factory()->run();があるファイルと同じディレクトリの中からテスト対象を発見しようとします。

対象となるディレクトリは次の優先度で決定します。

対象となるディレクトリを決定後、ファイル名およびクラス名の末尾がTestでかつ\fw3_for_old\ez_test\test_unit\TestInterfaceを実装したクラスを検出し、テスト対象として認識します。

  1. テストの実施

PHP CLIでブートストラップファイルを実行します。

これでテストの作成と実施は完了です。

3. 特殊な使い方

複数のディレクトリにあるテストを逐次実行させたい。

testCaseRootDirメソッドを用いて、テストケースがあるディレクトリパスを指定してください。


All versions of ez_test with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
ext-mbstring Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package fw3_for_old/ez_test contains the following files

Loading the files please wait ....