Open mtvjr opened 7 months ago
When running tests through VSCode's testing plugin, the BaseFilterTest tests would fail to initialize with the MockitoTestRunner error:
org.mockito.exceptions.base.MockitoException: No tests found in BaseFilterTest Is the method annotated with @Test? Is the method public?
org.mockito.exceptions.base.MockitoException:
No tests found in BaseFilterTest Is the method annotated with @Test? Is the method public?
This commit fixes this issue by marking the related tests as public, enabling Mockito to discover the tests.
This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.
When running tests through VSCode's testing plugin, the BaseFilterTest tests would fail to initialize with the MockitoTestRunner error:
This commit fixes this issue by marking the related tests as public, enabling Mockito to discover the tests.