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

17 lines
450 B
C#
Raw 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
2018-04-29 20:02:38 +02:00
{
/// <summary>
2018-04-30 21:29:49 +02:00
/// Provides an implementation of <see cref="IVariationContextAccessor"/> for tests.
2018-04-29 20:02:38 +02:00
/// </summary>
2018-04-30 21:29:49 +02:00
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
}
}