Skip to content

Commit 954628f

Browse files
author
BackEndTea
committed
Improve docs
1 parent a35a478 commit 954628f

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

README.md

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
# Watch Phpunit
22

3+
## Installation
4+
5+
```
6+
composer require backendtea/watch-phpunit --dev
7+
```
38
## What is this
49
The intention of this application is to 'watch' for file changes,
5-
and run the tests related to those files.
10+
and run the tests related to files that have been changed since the last git commit.
11+
This does mean that in its current form it needs to be in a git repository.
612

7-
In its current implementation it does so very naively.
8-
The app can be ran with two options, the source folder to watch, and the test folder.
9-
If any of the files in these folder change it will attempt to run the tests.
10-
11-
If the file is in the test folder it will simply run phpunit with that test.
12-
If the file is int he source folder, then it will look for the file as follows:
13-
14-
```diff
15-
+ src/Folder/FileThatChanged.php
16-
- tests/Folder/FileThatChangedTest.php
17-
```
13+
It figures out what classes depend on each other, and then runs the tests related to the
14+
changed files.
1815

1916

2017
## Usage

0 commit comments

Comments
 (0)