* Clean up datatype configurations for V14 * Fix merge * Remove ParameterEditorCollection + revert accidental changes to core project file
25 lines
683 B
C#
25 lines
683 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Moq;
|
|
using Umbraco.Cms.Core.IO;
|
|
using Umbraco.Cms.Core.PropertyEditors;
|
|
using Umbraco.Cms.Core.Strings;
|
|
using Umbraco.Cms.Infrastructure.Serialization;
|
|
|
|
namespace Umbraco.Cms.Tests.Common.TestHelpers;
|
|
|
|
public class MockedValueEditors
|
|
{
|
|
public static DataValueEditor CreateDataValueEditor(string name)
|
|
{
|
|
var valueType = ValueTypes.IsValue(name) ? name : ValueTypes.String;
|
|
|
|
return new DataValueEditor(
|
|
Mock.Of<IShortStringHelper>(),
|
|
new JsonNetSerializer(),
|
|
Mock.Of<IIOHelper>(),
|
|
new DataEditorAttribute(name) { ValueType = valueType });
|
|
}
|
|
}
|