Creating automated test projects

Automated tests often mirror the structure of the tested code. For example, we recommend creating at least one test project for every custom project that you have in your Kentico solution. You can have any number of test projects in the solution.

The following steps describe how to create test projects using the Kentico CMS.Tests library:

  1. Open your Kentico solution in Visual Studio (using the WebSite.sln or WebApp.sln file).

  2. Add a new project to the solution and select the Class Library project template.

    • Important: The name of the project must end with the .Tests suffix.
  3. Right-click the test project in the Solution Explorer and select Manage NuGet Packages.

  4. Search for the Kentico.Libraries.Tests package.

  5. Install the Kentico.Libraries.Tests version that matches the hotfix version of your Kentico instance (with all dependencies).

    Maintaining Kentico.Libraries.Tests

    If you upgrade or hotfix the related Kentico project to a newer version, you also need to update the Kentico.Libraries.Tests NuGet package to a matching version in your test projects.

  6. We also recommend installing theĀ NUnit3TestAdapter NuGet package. The package is required to run NUnit tests.

  7. Add references from the test project to all projects whose code you wish to test, and any other required project.

Now you can write test classes inside the new test project. You can use the Visual Studio Test Explorer to execute your tests.

NUnit test class example



using CMS.Tests;
using NUnit.Framework;

namespace UnitTestExample
{
    [TestFixture]
    public class MyTests : UnitTests
    {
        [SetUp]
        public void MyTestSetUp()
        {
            // Setup executed before each test in this test class
        }

        [Test]
        public void MyTest()
        {
            // Test execution
        }
    }
}


For additional information about writing tests, see the following pages: