Implements U4-943 to the extent its currently possible.

Refactoring publishing methods in the ContentService.
Adding tests for the QueryBuilder.
This commit is contained in:
sitereactor
2012-10-29 14:28:16 -01:00
parent c20072c01d
commit 0c4c429b68
20 changed files with 490 additions and 128 deletions

View File

@@ -0,0 +1,20 @@
using NUnit.Framework;
using Umbraco.Core.Persistence.SqlSyntax;
namespace Umbraco.Tests.TestHelpers
{
[TestFixture]
public abstract class BaseUsingSqlCeSyntax
{
[SetUp]
public virtual void Initialize()
{
SyntaxConfig.SqlSyntaxProvider = SqlCeSyntaxProvider.Instance;
SetUp();
}
public virtual void SetUp()
{}
}
}