Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHSpecific
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19437/src/NHibernate.DomainModel/NHSpecific
Modified Files:
BasicClass.cs BasicClass.hbm.xml
Log Message:
Removed dependency on DotNetMock from the Test assembly.
Modified the test that were dependant on DotNetMock.
Index: BasicClass.hbm.xml
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHSpecific/BasicClass.hbm.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** BasicClass.hbm.xml 23 Oct 2004 15:01:19 -0000 1.6
--- BasicClass.hbm.xml 30 Dec 2004 16:25:12 -0000 1.7
***************
*** 11,21 ****
</id>
- <property name="BooleanProperty" type="Boolean" column="bool_p"/>
- <property name="ByteProperty" type="Byte" column="byte_p"/>
<property name="CharacterProperty" type="Char" column="char_p" length="1"/>
<property name="ClassProperty" type="Type" column="class_p"/>
<property name="CultureInfoProperty" type="CultureInfo" column="cinfo_p"/>
<property name="DateTimeProperty" type="DateTime" column="dtm_p"/>
- <property name="DecimalProperty" type="Decimal(19,5)" column="decm_p"/>
<property name="Int16Property" type="Int16" column="shrt_p" />
<property name="Int32Property" type="Int32" column="int_p"/>
--- 11,18 ----
Index: BasicClass.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHSpecific/BasicClass.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** BasicClass.cs 18 Nov 2004 02:45:43 -0000 1.7
--- BasicClass.cs 30 Dec 2004 16:25:12 -0000 1.8
***************
*** 12,22 ****
private int _id;
- private bool _booleanProperty;
- private byte _byteProperty;
private char _characterProperty;
private System.Type _classProperty;
private System.Globalization.CultureInfo _cultureInfoProperty;
private DateTime _dateTimeProperty;
- private decimal _decimalProperty;
private short _int16Property;
private int _int32Property;
--- 12,19 ----
***************
*** 49,64 ****
}
- public bool BooleanProperty
- {
- get {return _booleanProperty;}
- set {_booleanProperty = value;}
- }
-
- public byte ByteProperty
- {
- get {return _byteProperty;}
- set {_byteProperty = value;}
- }
-
public char CharacterProperty
{
--- 46,49 ----
***************
*** 85,94 ****
}
- public decimal DecimalProperty
- {
- get {return _decimalProperty;}
- set {_decimalProperty = value;}
- }
-
public short Int16Property
{
--- 70,73 ----
|