Please enable JavaScript.
Coggle requires JavaScript to display documents.
Testing - Coggle Diagram
Testing
-
Types
-
Integration Tests
Spring Test, Spring Boot Test
-
Preformance Test
Tools JMeter
APIs, Web-apps & DBs
-
-
-
-
-
Fake implementations
Mocks
Mockito
Proxy-based
A Proxy Object is an Object that is used to take the place of a Real Object.
In the case of Mock Objects,
a Proxy Object is used to imitate the real object your code is dependent on.
JMockit
Class Remapping
The second form of mocking is to remap the class file in the class loader. The mocking framework
JMockit is the only framework I’m aware of that currently exploits this ability for mock objects.
Stubs are implementations that you write
to replace various pieces of an application.
Stubs contain hard coded logic intended to mimic a particular behavior during execution
-