Files

14 lines
240 B
C#
Raw Permalink Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Tests.Integration.Testing;
public interface ITestDatabase
{
TestDbMeta AttachEmpty();
TestDbMeta AttachSchema();
void Detach(TestDbMeta id);
}