Skip to content

Commit

Permalink
Merge pull request #638 from alexislefebvre/doc-add-links-to-previous…
Browse files Browse the repository at this point in the history
…-and-next-pages

doc: add links to previous and next pages
  • Loading branch information
alexislefebvre committed Jan 8, 2024
2 parents f8e0bd2 + 41c3a21 commit 5a46401
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,5 @@ $this->isSuccessful($client->getResponse());
> [!TIP]
> Consider hard-coding the URLs in the test: it will ensure that if a route is changed,
> the test will fail, so you'll know that there is a Breaking Change.
[Installation](./installation.md)[Command test](./command.md)
2 changes: 2 additions & 0 deletions doc/caveats.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,5 @@ Set path to this file in your PHPUnit configuration file (eg. `phpunit.xml.dist`
>
```

[Examples](./examples.md)[Fastest](./fastest.md)
2 changes: 2 additions & 0 deletions doc/command.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ class MyTestCase extends WebTestCase {
}
}
```

[Basic usage](./basic.md)[Logged client](./logged.md)
2 changes: 2 additions & 0 deletions doc/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ class ExampleFunctionalTest extends WebTestCase
}
}
```

[Query counter](./query.md)[Caveats](./caveats.md)
2 changes: 2 additions & 0 deletions doc/fastest.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ find src/*/*/Tests/ -name "*Test.php" | vendor/bin/fastest "vendor/bin/phpunit -
```

Otherwise you'll have to adapt the paths.

[Caveats](./caveats.md)
1 change: 1 addition & 0 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,4 @@ Installation

liip_functional_test: ~
```
[Basic usage](./basic.md)
2 changes: 2 additions & 0 deletions doc/logged.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,5 @@ security:
### Final notes

For more details, you can check the implementation of `WebTestCase` in that bundle.

[Command test](./command.md)[Query counter](./query.md)
2 changes: 2 additions & 0 deletions doc/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,5 @@ Caveats
// ...
}
```

[Logged client](./logged.md)[Examples](./examples.md)

0 comments on commit 5a46401

Please sign in to comment.