21 In this context, the word "stub" is used in place of "mock", but for the sake of clarity and precision, the author should have used "mock", because "mock" is a sort of stub, but for testing. To avoid further confusion, we need to define what a stub is.
6 A "stub" or "stub method" is designed to be a starter-code or a temporary substitute for yet-to-be-developed code. It's a built-in code generated by an IDE. Stub methods are actually methods used for testing methods of a particular class.
42 Qual a diferença entre mock e stub? Enquanto um stub apenas provê respostas prontas para as chamadas que serão feitas durante o teste, o mock vai mais além e, além de prover as respostas, também valida as chamadas - ele conhece o comportamento esperado do sistema e testa este comportamento.
Qual a diferença entre "mock" e "stub"? - Stack Overflow em Português
I've read various articles about mocking vs stubbing in testing, including Martin Fowler's Mocks Aren't Stubs, but still don't understand the difference.
Stub: Se utiliza para comprobar la funcionalidad. Es decir, utilizaré un Mock si me interesa saber que, llamando a cierta función, está, por ejemplo, ejecuta la llamada a otra, sin importarme (al menos de momento ni demasiado) el resultado.
What is .Stub ? Question 2: I checked "AIDL", but I want to know why we have to use that instead of the Java interface file?
What is " Stub " and "AIDL" for in java? - Stack Overflow