Roman Mitasov
Roman Mitasov
Right now there're tons of libs relying on Hamcrest matchers, such as [rest-assured](https://github.com/rest-assured/rest-assured), which is also has Kotlin support. When I saw your library first time I was pretty surprised....
JSON Schema validation works perfectly for body validation: ```java // when.get.then .body(matchesJsonSchema("...")); // fine! ``` BUT I tried to match not the whole body but it's part, and assertion always...
I'm writing test on GET request to my API and my test case scenario is something like: - perform GET /*** - check status code is 200 - check json...
**Is your feature request related to a problem? Please describe.** When going through advises in `build-health-report.txt` I need to call `reason --id ` almost for each module as I need...
**Describe the feature request** INFO log level provides only informative logs, not everything. **What you are trying to do** I have maybe a hundred or so of tests, and only...
Verification.kt contains function: ```kt /** * Allows [InOrder] verification for a single mocked instance: * * mock.inOrder { * verify().foo() * } * */ inline fun T.inOrder(block: InOrderOnType.() -> Any)...
`captureContainersOutput` is very useful, but when I have docker-compose with up to 10 services, this switch simply explodes my console. I think it would be nice to have option to...
I see that last master update was 2 years ago, nine PRs are waiting for merge, 6 of which are from GitHub. This feature is really cool thing that can...
**Read the documentation, maybe we already have the feature** Didn't find **Is your feature request related to a problem? Please describe.** List of standard inline matchers seems incomplete, we have...
**Describe the bug** 1. AssertJ 2.33.0 2. Create a small reproducible example and paste it the the bug report. ```kt assertThatJson("""[{"id": 123, "name": "abc"}, {"id": 432}]""") .isArray() .filteredOn("id", 123) .first()...