Skip to content

Commit 62c274b

Browse files
committed
NH-3405 - Run test only with MsSql2005Dialect and above.
1 parent 993da7c commit 62c274b

File tree

1 file changed

+6
-0
lines changed
  • src/NHibernate.Test/NHSpecificTest/NH3405

1 file changed

+6
-0
lines changed

src/NHibernate.Test/NHSpecificTest/NH3405/Fixture.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Xml.Linq;
44
using NHibernate.Cfg;
55
using NHibernate.Cfg.MappingSchema;
6+
using NHibernate.Dialect;
67
using NHibernate.Linq;
78
using NHibernate.Mapping.ByCode;
89
using NHibernate.Type;
@@ -23,6 +24,11 @@ protected override void Configure(Configuration configuration)
2324
configuration.SetProperty(Cfg.Environment.WrapResultSets, Boolean.TrueString);
2425
}
2526

27+
protected override bool AppliesTo(Dialect.Dialect dialect)
28+
{
29+
return dialect is MsSql2005Dialect;
30+
}
31+
2632
protected override HbmMapping GetMappings()
2733
{
2834
var mapper = new ModelMapper();

0 commit comments

Comments
 (0)