Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions fern/products/sdks/overview/java/changelog/2025-08-14.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## 2.41.0
**`(feat):`** Add support for generating wire tests via `enable-wire-tests` flag. Wire tests verify HTTP protocol communication
using MockWebServer and are generated for all endpoints in a service.

```yaml
customConfig:
enable-wire-tests: true
```

Generated tests include:
- Working 404/500 error tests that compile immediately
- Success test templates with TODO comments for customization
- Proper handling of staged vs regular builders
- Constants for all magic strings for better maintainability

Note: Complex request bodies and response validation require manual customization.