Removes unused and obsoleted code

This commit is contained in:
Shannon
2018-05-01 01:30:36 +10:00
parent 6faa2ff177
commit 19edfdb2a4
11 changed files with 4 additions and 957 deletions

View File

@@ -415,35 +415,7 @@ namespace Umbraco.Tests.Persistence
scope.Complete();
}
}
[Test]
public void Can_Create_cmsStylesheet_Table()
{
using (var scope = ScopeProvider.CreateScope())
{
var helper = new DatabaseSchemaCreator(scope.Database, Mock.Of<ILogger>());
helper.CreateTable<NodeDto>();
helper.CreateTable<StylesheetDto>();
scope.Complete();
}
}
[Test]
public void Can_Create_cmsStylesheetProperty_Table()
{
using (var scope = ScopeProvider.CreateScope())
{
var helper = new DatabaseSchemaCreator(scope.Database, Mock.Of<ILogger>());
helper.CreateTable<NodeDto>();
helper.CreateTable<StylesheetPropertyDto>();
scope.Complete();
}
}
[Test]
public void Can_Create_cmsTags_Table()
{