From: <dar...@us...> - 2009-06-10 05:31:13
|
Revision: 4442 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4442&view=rev Author: darioquintana Date: 2009-06-10 05:30:11 +0000 (Wed, 10 Jun 2009) Log Message: ----------- Test applies to MsSQLServer 2005/2008 Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1556/Fixture.cs Modified: trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1556/Fixture.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1556/Fixture.cs 2009-06-10 05:07:21 UTC (rev 4441) +++ trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1556/Fixture.cs 2009-06-10 05:30:11 UTC (rev 4442) @@ -1,5 +1,6 @@ using System; using System.Collections; +using NHibernate.Dialect; using NUnit.Framework; namespace NHibernate.Test.NHSpecificTest.NH1556 @@ -7,6 +8,11 @@ [TestFixture] public class Fixture : BugTestCase { + protected override bool AppliesTo(Dialect.Dialect dialect) + { + return Dialect is MsSql2005Dialect; + } + // This test not fail but something very strange happen in various others tests // probably the problem is the implementation of QuotedAndParenthesisStringTokenizer in MsSql2005Dialect // but i'm not sure This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |