File tree Expand file tree Collapse file tree 3 files changed +17
-10
lines changed
Async/NHSpecificTest/GH2029 Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 1919namespace NHibernate . Test . NHSpecificTest . GH2029
2020{
2121 using System . Threading . Tasks ;
22-
2322 [ TestFixture ]
2423 public class FixtureAsync : TestCaseMappingByCode
2524 {
Original file line number Diff line number Diff line change 77
88namespace NHibernate . Test . NHSpecificTest . GH2029
99{
10- public class TestClass
11- {
12- public virtual int Id { get ; set ; }
13- public virtual int ? NullableInt32Prop { get ; set ; }
14- public virtual int Int32Prop { get ; set ; }
15- public virtual long ? NullableInt64Prop { get ; set ; }
16- public virtual long Int64Prop { get ; set ; }
17- }
18-
1910 [ TestFixture ]
2011 public class Fixture : TestCaseMappingByCode
2112 {
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace NHibernate . Test . NHSpecificTest . GH2029
8+ {
9+ public class TestClass
10+ {
11+ public virtual int Id { get ; set ; }
12+ public virtual int ? NullableInt32Prop { get ; set ; }
13+ public virtual int Int32Prop { get ; set ; }
14+ public virtual long ? NullableInt64Prop { get ; set ; }
15+ public virtual long Int64Prop { get ; set ; }
16+ }
17+ }
You can’t perform that action at this time.
0 commit comments