From 41c3a213dac33c0a3d3e84569a274ea536f643a2 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre <alexislefebvre+github@gmail.com> Date: Mon, 8 Jan 2024 22:38:38 +0100 Subject: [PATCH] doc: add links to previous and next pages --- doc/basic.md | 2 ++ doc/caveats.md | 2 ++ doc/command.md | 2 ++ doc/examples.md | 2 ++ doc/fastest.md | 2 ++ doc/installation.md | 1 + doc/logged.md | 2 ++ doc/query.md | 2 ++ 8 files changed, 15 insertions(+) diff --git a/doc/basic.md b/doc/basic.md index 82b5cd38..3a9c105a 100644 --- a/doc/basic.md +++ b/doc/basic.md @@ -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) → diff --git a/doc/caveats.md b/doc/caveats.md index a2551598..c97217ee 100644 --- a/doc/caveats.md +++ b/doc/caveats.md @@ -54,3 +54,5 @@ Set path to this file in your PHPUnit configuration file (eg. `phpunit.xml.dist` … > ``` + +← [Examples](./examples.md) • [Fastest](./fastest.md) → diff --git a/doc/command.md b/doc/command.md index 51557a14..7cad118a 100644 --- a/doc/command.md +++ b/doc/command.md @@ -45,3 +45,5 @@ class MyTestCase extends WebTestCase { } } ``` + +← [Basic usage](./basic.md) • [Logged client](./logged.md) → diff --git a/doc/examples.md b/doc/examples.md index 117a9392..273bcfd3 100644 --- a/doc/examples.md +++ b/doc/examples.md @@ -102,3 +102,5 @@ class ExampleFunctionalTest extends WebTestCase } } ``` + +← [Query counter](./query.md) • [Caveats](./caveats.md) → diff --git a/doc/fastest.md b/doc/fastest.md index 4d1e9c04..b87f8bc9 100644 --- a/doc/fastest.md +++ b/doc/fastest.md @@ -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) diff --git a/doc/installation.md b/doc/installation.md index 58cdcf1e..99ab71fd 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -81,3 +81,4 @@ Installation liip_functional_test: ~ ``` +[Basic usage](./basic.md) → diff --git a/doc/logged.md b/doc/logged.md index 5db16800..05cc9fdf 100644 --- a/doc/logged.md +++ b/doc/logged.md @@ -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) → diff --git a/doc/query.md b/doc/query.md index f7aba7da..1f85be21 100644 --- a/doc/query.md +++ b/doc/query.md @@ -88,3 +88,5 @@ Caveats // ... } ``` + +← [Logged client](./logged.md) • [Examples](./examples.md) →