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

14 lines
385 B
C#
Raw Normal View History

2018-04-29 20:02:38 +02:00
using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.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
}
}