File: Services\ServiceBase.cs
Web Access
Project: src\src\Razor\src\Razor\test\Microsoft.VisualStudioCode.Razor.IntegrationTests\Microsoft.VisualStudioCode.Razor.IntegrationTests.csproj (Microsoft.VisualStudioCode.Razor.IntegrationTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.VisualStudioCode.Razor.IntegrationTests.Services;
 
/// <summary>
/// Base class for all integration test service classes.
/// </summary>
public abstract class ServiceBase(IntegrationTestServices testServices)
{
    /// <summary>
    /// Gets the integration test services container.
    /// </summary>
    protected IntegrationTestServices TestServices { get; } = testServices;
}