mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 13:51:22 +08:00
Adapting unit tests to NHibernate breaking change
https://github.com/nhibernate/nhibernate-core/issues/1106 https://github.com/nhibernate/nhibernate-core/issues/1095
This commit is contained in:
parent
4c1afb119b
commit
f3e9f9550d
@ -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)
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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")]
|
||||
|
Loading…
Reference in New Issue
Block a user