Class io.micronaut.http.uri.UriTypeMatchTemplateSpec
Tests
Test |
Duration |
Result |
Test URI template /books matches /books |
0.020s |
passed |
Test URI template /books/{id} matches /books/1 |
0s |
passed |
Test URI template /books/{id} matches /books/1.1 |
0.001s |
passed |
Test URI template /books/{id} matches /books/test |
0s |
passed |
Test URI template /books{/id} matches /books/1/authors/2 when nested with /authors{/authorId} |
0.076s |
passed |
Test URI template /books{/id} matches /books/1/authors/test when nested with /authors{/authorId} |
0.001s |
passed |
Test URI template /books{/id} matches /books/test/authors/2 when nested with /authors{/authorId} |
0.001s |
passed |
Test URI template /books{/id}/authors{/authorId} matches /books/1/authors/2 |
0.001s |
passed |