Open sbrannen opened 7 years ago
This issue has been automatically marked as stale because it has not had recent activity. Given the limited bandwidth of the team, it will be automatically closed if no further activity occurs. Thank you for your contribution.
This issue has been automatically closed due to inactivity. If you have a good use case for this feature, please feel free to reopen the issue.
This issue has been automatically marked as stale because it has not had recent activity. Given the limited bandwidth of the team, it will be automatically closed if no further activity occurs. Thank you for your contribution.
Closing due to lack of requested feedback. If you would like to proceed with your contribution, please provide the requested information and we will re-open this issue.
Overview
IsTestMethod
andIsTestTemplateMethod
currently validate that@Test
and@TestTemplate
methods have avoid
return type; however,IsTestFactoryMethod
only validates that@TestFactory
methods do not have avoid
return type. Consequently,@TestFactory
return types are not validated during the discovery phase.On the other hand,
@TestFactory
return types are in fact validated during the execution phase, but this is late and inconsistent with the behavior for all other types of testable methods.Related Issues
242
835
Deliverables
@TestFactory
method return type validation fromTestFactoryTestDescriptor
toIsTestFactoryMethod
.@Disabled
tests inIsTestFactoryMethodTests
.