Maintain decoupled code

If you follow this approach, you avoid calling any static methods and program everything against an interface. Later, during the unit testing, you can mock the implementation all of the dependencies easily.

To create a unit test, use the following procedure:

  1. Program against interface and move the static method call of the SystemManager.SystemServices.IsReadOnly method to a wrapper class.

    EXAMPLE: For more information, see SystemManagerWrapper.cs class in Sitefinity documentation-samples on GitHub.

  2. Refactor the IsDeletionAllowed method.

    EXAMPLE: For more information, see SutClass.cs class in Sitefinity documentation-samples on GitHub.

  3. Test the method by mocking the ISystemManagerWrapper using Telerik JustMock.

    EXAMPLE: For more information, see SitefinityUnitTests.cs class in Sitefinity documentation-samples on GitHub.

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?

Next article

Use advanced mocking