2020-12-23 11:35:49 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
2020-12-12 11:33:57 +00:00
|
|
|
namespace Umbraco.Tests.Integration.Testing
|
2020-11-27 19:15:49 +00:00
|
|
|
{
|
|
|
|
|
public interface ITestDatabase
|
|
|
|
|
{
|
2020-12-12 11:33:57 +00:00
|
|
|
TestDbMeta AttachEmpty();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2020-12-12 11:33:57 +00:00
|
|
|
TestDbMeta AttachSchema();
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2020-12-12 11:33:57 +00:00
|
|
|
void Detach(TestDbMeta id);
|
2020-11-27 19:15:49 +00:00
|
|
|
}
|
|
|
|
|
}
|