Most popular Mocking framework for unit tests written in Java
java
testing
mock
test-automation
mocking
mockito
testing-tools
mock-library
java-library
test-driven-development
mocks
mocking-framework
-
Updated
Aug 6, 2021 - Java
Take this class, for example:
`
import Foundation
// some comment has import SOMEBADTHING
public protocol TestProtocol: AnyObject {
func doSomething() -> Void
}
`
The generated mock ends up having:
... import SOMEBADTHING ...
Looks like it is looking for "{import .*}" in source files and just adding that verbatim to the output file, causing compile issues.