background

Telerik JustMock

MSBuild

  • JustMock integrates seamlessly with MSBuild scripts to support the unit testing stage of your CI/CD builds.
  • Part of the fastest, most flexible and complete mocking tool for crafting unit tests.
  • Our award-winning support team is available to assist you with any issues.
Build System Integration
  • Integration with MSBuild Overview

    MSBuild is Microsoft’s Build Engine—a platform for building applications. This engine provides an XML schema for a project file that controls how the build platform processes and builds software. Using MSBuild scripts, you can define what tasks should be included in the continuous integration (CI) process.

    JustMock integrates seamlessly with MSBuild scripts to support the unit testing stage of your CI/CD builds.

    <Target Name="BeforeTestConfiguration">
        <JustMockStart />
    </Target>
     
    <!-- execute the unit tests here -->
     
    <Target Name="AfterTestConfiguration">
        <JustMockStop />
    </Target>

    JustMock integration with MSBuild documentation article
Next Steps