Benedek Farkas 2024-11-28 16:42:04 +01:00
parent 4c1afb119b
commit f3e9f9550d
4 changed files with 36 additions and 13 deletions

View File

@ -15,6 +15,7 @@ using Orchard.ContentManagement.MetaData.Services;
using Orchard.ContentManagement.Records;
using Orchard.Core.Settings.Handlers;
using Orchard.Core.Settings.Metadata;
using Orchard.Core.Settings.Metadata.Records;
using Orchard.Core.Settings.Models;
using Orchard.Core.Settings.Services;
using Orchard.DisplayManagement;
@ -110,7 +111,12 @@ namespace Orchard.Tests.Modules.Users.Controllers {
return new[] { typeof(UserPartRecord),
typeof(ContentTypeRecord),
typeof(ContentItemRecord),
typeof(ContentItemVersionRecord),
typeof(ContentItemVersionRecord),
typeof(ContentPartDefinitionRecord),
typeof(ContentPartFieldDefinitionRecord),
typeof(ContentFieldDefinitionRecord),
typeof(ContentTypeDefinitionRecord),
typeof(ContentTypePartDefinitionRecord)
};
}
}

View File

@ -14,6 +14,7 @@ using Orchard.ContentManagement.MetaData.Services;
using Orchard.ContentManagement.Records;
using Orchard.Core.Settings.Handlers;
using Orchard.Core.Settings.Metadata;
using Orchard.Core.Settings.Metadata.Records;
using Orchard.Core.Settings.Services;
using Orchard.Data;
using Orchard.DisplayManagement;
@ -54,7 +55,12 @@ namespace Orchard.Tests.Modules.Users.Services
typeof(UserPartRecord),
typeof(ContentItemVersionRecord),
typeof(ContentItemRecord),
typeof(ContentTypeRecord));
typeof(ContentTypeRecord),
typeof(ContentPartDefinitionRecord),
typeof(ContentPartFieldDefinitionRecord),
typeof(ContentFieldDefinitionRecord),
typeof(ContentTypeDefinitionRecord),
typeof(ContentTypePartDefinitionRecord));
}
[TestFixtureTearDown]

View File

@ -14,6 +14,7 @@ using Orchard.ContentManagement.MetaData.Services;
using Orchard.ContentManagement.Records;
using Orchard.Core.Settings.Handlers;
using Orchard.Core.Settings.Metadata;
using Orchard.Core.Settings.Metadata.Records;
using Orchard.Core.Settings.Services;
using Orchard.Data;
using Orchard.DisplayManagement;
@ -59,7 +60,12 @@ namespace Orchard.Tests.Modules.Users.Services
typeof(UserPartRecord),
typeof(ContentItemVersionRecord),
typeof(ContentItemRecord),
typeof(ContentTypeRecord));
typeof(ContentTypeRecord),
typeof(ContentPartDefinitionRecord),
typeof(ContentPartFieldDefinitionRecord),
typeof(ContentFieldDefinitionRecord),
typeof(ContentTypeDefinitionRecord),
typeof(ContentTypePartDefinitionRecord));
}
[TestFixtureTearDown]

View File

@ -12,6 +12,7 @@ using Orchard.ContentManagement.MetaData;
using Orchard.ContentManagement.MetaData.Services;
using Orchard.ContentManagement.Records;
using Orchard.Core.Settings.Metadata;
using Orchard.Core.Settings.Metadata.Records;
using Orchard.Data;
using Orchard.Environment;
using Orchard.Projections.Handlers;
@ -61,15 +62,21 @@ namespace Orchard.Projections.Tests.Services {
protected override IEnumerable<Type> DatabaseTypes {
get {
return new[] {
typeof(ContentItemRecord),
typeof(ContentItemVersionRecord),
typeof(ContentTypeRecord),
typeof(ContentPartDefinitionRecord),
typeof(ContentPartFieldDefinitionRecord),
typeof(ContentFieldDefinitionRecord),
typeof(ContentTypeDefinitionRecord),
typeof(ContentTypePartDefinitionRecord),
typeof(ContentItemRecord),
typeof(ContentItemVersionRecord),
typeof(ContentTypeRecord),
typeof(FieldIndexPartRecord),
typeof(FieldIndexPartRecord),
typeof(StringFieldIndexRecord),
typeof(IntegerFieldIndexRecord),
typeof(DecimalFieldIndexRecord),
typeof(StringFieldIndexRecord),
typeof(IntegerFieldIndexRecord),
typeof(DecimalFieldIndexRecord),
typeof(DoubleFieldIndexRecord)
};
}
@ -113,8 +120,6 @@ namespace Orchard.Projections.Tests.Services {
SaveObject(0m);
SaveObject(-42m);
SaveObject(42m);
// SaveObject(decimal.MaxValue);
// SaveObject(decimal.MinValue);
}
[Test, Ignore("SqlCe exception")]