Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7808
Modified Files:
TestCase.cs
Log Message:
Added a protected field dialect.
Index: TestCase.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/TestCase.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** TestCase.cs 15 Apr 2004 13:21:19 -0000 1.10
--- TestCase.cs 16 Apr 2004 14:07:19 -0000 1.11
***************
*** 15,18 ****
--- 15,19 ----
{
protected Configuration cfg;
+ protected Dialect.Dialect dialect;
protected ISessionFactory sessions;
***************
*** 32,37 ****
if(exportSchema) new SchemaExport(cfg).Create(true, true);
!
sessions = cfg.BuildSessionFactory( );
}
--- 33,39 ----
if(exportSchema) new SchemaExport(cfg).Create(true, true);
!
sessions = cfg.BuildSessionFactory( );
+ dialect = Dialect.Dialect.GetDialect();
}
|