Files
Umbraco-CMS/tests/Umbraco.Tests.UnitTests/Umbraco.Infrastructure/Migrations/Stubs/Dummy.cs
Bjarke Berg 0f1c2f7022 Ensure no management api for v12 (#14197)
* Remove management api

* Remove actual files
2023-05-04 13:32:41 +02:00

21 lines
588 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Infrastructure.Migrations;
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Infrastructure.Migrations.Stubs;
/// <summary>
/// This is just a dummy class that is used to ensure that implementations
/// of IMigration is not found if it doesn't have the MigrationAttribute (like this class).
/// </summary>
public class Dummy : MigrationBase
{
public Dummy(IMigrationContext context)
: base(context)
{
}
protected override void Migrate() => throw new NotImplementedException();
}