Files
Umbraco-CMS/tests/Umbraco.Tests.Common/TestHelpers/MockedValueEditors.cs
Kenn Jacobsen cc082e191c Clean up datatype configurations for V14 (#15718)
* Clean up datatype configurations for V14

* Fix merge

* Remove ParameterEditorCollection + revert accidental changes to core project file
2024-02-15 12:36:23 +01:00

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 });
}
}