File tree 1 file changed +9
-12
lines changed
1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Watch Phpunit
2
2
3
+ ## Installation
4
+
5
+ ```
6
+ composer require backendtea/watch-phpunit --dev
7
+ ```
3
8
## What is this
4
9
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.
6
12
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.
18
15
19
16
20
17
## Usage
You can’t perform that action at this time.
0 commit comments