2020-12-19 08:17:35 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
using Umbraco.Cms.Core.Models.PublishedContent;
|
2018-04-29 20:02:38 +02:00
|
|
|
|
2021-02-18 11:06:02 +01: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 />
|
2019-01-17 18:03:07 +01:00
|
|
|
public VariationContext VariationContext { get; set; }
|
2018-04-29 20:02:38 +02:00
|
|
|
}
|
|
|
|
|
}
|