* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Umbraco.Cms.Core.Security;
|
|
using Umbraco.Cms.Tests.Common.Builders.Interfaces;
|
|
|
|
namespace Umbraco.Cms.Tests.Common.Builders
|
|
{
|
|
public class UmbracoIdentityRoleBuilder : BuilderBase<UmbracoIdentityRole>,
|
|
IWithIdBuilder<string>,
|
|
IWithNameBuilder
|
|
{
|
|
private string _id;
|
|
private string _name;
|
|
|
|
public UmbracoIdentityRoleBuilder WithTestName(string id)
|
|
{
|
|
_name = "testname";
|
|
_id = id;
|
|
return this;
|
|
}
|
|
|
|
string IWithNameBuilder.Name
|
|
{
|
|
get => _name;
|
|
set => _name = value;
|
|
}
|
|
|
|
string IWithIdBuilder<string>.Id
|
|
{
|
|
get => _id;
|
|
set => _id = value;
|
|
}
|
|
|
|
public override UmbracoIdentityRole Build()
|
|
{
|
|
var id = _id;
|
|
var name = _name;
|
|
|
|
return new UmbracoIdentityRole
|
|
{
|
|
Id = id,
|
|
Name = name,
|
|
};
|
|
}
|
|
}
|
|
}
|