Skip to content

Commit

Permalink
Windows向けのコメントを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
uzulla committed Jan 14, 2014
1 parent f5ac036 commit 670fcd9
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,41 @@

事前にComposerででphpunitをインストールします

# 注意

## PHPの設定

`php.ini`にて

```
mbstring.internal_encoding = UTF-8
```

が適切に設定されていないと、文字列比較のテストで失敗します。

## Windowsの場合

実行行の`/``\\`に置き換えて読んでください。

# 全テスト実行

```
# test/ディレクトリにて
$ php ../vendor/bin/phpunit
$ ../vendor/bin/phpunit
```

# 単テスト実行

```
# test/ディレクトリにて
$ php ../vendor/bin/phpunit Test/Controller/TimeLineTest.php
$ ../vendor/bin/phpunit Test/Controller/TimeLineTest.php
```

#ディレクトリ以下のテスト実行

```
# test/ディレクトリにて
$ php ../vendor/bin/phpunit Test/Controller/
$ ../vendor/bin/phpunit Test/Controller/
```

PHPUnit でディレクトリを指定した場合、`*Test.php`のファイルが再帰的に読み込まれ、実行されます。
Expand Down

0 comments on commit 670fcd9

Please sign in to comment.