2023-02-02
Diffblue Cover extends the types of custom inputs that can be specified in DiffblueRules.yml
java.lang.String[]:
- immediate: [ "Hello", "World!" ]
- immediate: # this rule uses different syntax for the same rule as above
- "Hello"
- "World!"
java.lang.String[][]:
- immediate: [ [ "Multidimension", "arrays" ], [ "are", "also", "supported" ] ]
- immediate: # this rule uses different syntax for the same rule as above
- [ "Multidimension", "arrays" ]
- [ "are", "also", "supported" ]
- immediate: # this rule uses another syntax variation for the same rule
- - "Multidimension"
- "arrays"
- - "are"
- "also"
- "supported"Enhancements
Resolved Issues
Known Issues
Last updated
Was this helpful?

