Files
Umbraco-CMS/tests/Umbraco.Tests.Common/TestVariationContextAccessor.cs

16 lines
421 B
C#
Raw Permalink Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Models.PublishedContent;
2018-04-29 20:02:38 +02:00
namespace Umbraco.Cms.Tests.Common;
/// <summary>
/// Provides an implementation of <see cref="IVariationContextAccessor" /> for tests.
/// </summary>
public class TestVariationContextAccessor : IVariationContextAccessor
2018-04-29 20:02:38 +02:00
{
/// <inheritdoc />
public VariationContext VariationContext { get; set; }
2018-04-29 20:02:38 +02:00
}