Anonymous classes implementing filter and validator interfaces in processor tests have been replaced with mocks instead
Problem
When adding new methods to the Validator and Filter interfaces, the Processor tests would explode because their anonymous classes needed to implement the new methods.
Solution
This PR replaces the anonymous classes with mocks so they do not need to implement every method being added. Which will save time developing and reduce amount of changes in PR reviews
Anonymous classes implementing filter and validator interfaces in processor tests have been replaced with mocks instead
Problem When adding new methods to the Validator and Filter interfaces, the Processor tests would explode because their anonymous classes needed to implement the new methods.
Solution This PR replaces the anonymous classes with mocks so they do not need to implement every method being added. Which will save time developing and reduce amount of changes in PR reviews
Merge before #82