https://kotlinlang.org logo
#general-advice
Title
# general-advice
p

PHondogo

09/23/2022, 10:57 AM
Hello! Is there posibility to define default actual for expect such that if no actual was found for target default will be applied?
l

Landry Norris

09/23/2022, 1:40 PM
This can be done for expected annotations using
Copy code
@OptionalExpectation
but it only works for expected annotations right now, not methods or variables.
3 Views