Telerik JustMock
Fast, flexible, fully featured mocking framework.
Published by Telerik
Distributed by ComponentSource since 2018
Prices from: $ 391.02 Version: R1 2021 NEW Updated: Jan 15, 2021
Telerik JustMock is an easy to use mocking tool designed to help you create better unit tests, fast. JustMock makes it easier for you to create mock objects and set expectations independently of external dependencies like databases, web service calls, or proprietary code. The JustMock API is completely AAA (Arrange/Act/Assert) oriented thus helping you keep your unit tests well structured, clean and readable. No matter whether you try to mock an interface, a sealed class or a static class, the pattern you use is the same.
Image 1 / 6
What Is Mocking and Why Do I Need It?
Mocking is a concept in unit testing where real objects are substituted with fake objects that imitate the behavior of the real ones. Mocking is done so that a test can focus on the code being tested and not on the behavior or state of external dependencies.
For example, if you have a data repository class that runs business logic and then saves information to a database, you want your unit test to focus on the business logic and not on the database. Mocking...