Files
Umbraco-CMS/tests/Umbraco.Tests.Integration/Testing/ITestDatabase.cs

14 lines
240 B
C#
Raw 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);
}