Fixes most tests, only 4 failing but they are arbitrary... now we can look to start cleaning/deleting more stuff :)

This commit is contained in:
Shannon
2015-05-05 18:24:31 +10:00
parent fba98eb7f6
commit 36f3948835
9 changed files with 48 additions and 16 deletions

View File

@@ -14,10 +14,9 @@ namespace Umbraco.Tests.TestHelpers
[TestFixture]
public abstract class BaseUsingSqlCeSyntax
{
private SqlCeSyntaxProvider _sqlSyntax;
protected SqlCeSyntaxProvider SqlSyntax
protected virtual SqlCeSyntaxProvider SqlSyntax
{
get { return _sqlSyntax ?? (_sqlSyntax = new SqlCeSyntaxProvider()); }
get { return new SqlCeSyntaxProvider(); }
}
private MappingResolver _mappingResolver;