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 19
19
namespace NHibernate . Test . NHSpecificTest . GH2029
20
20
{
21
21
using System . Threading . Tasks ;
22
-
23
22
[ TestFixture ]
24
23
public class FixtureAsync : TestCaseMappingByCode
25
24
{
Original file line number Diff line number Diff line change 7
7
8
8
namespace NHibernate . Test . NHSpecificTest . GH2029
9
9
{
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
-
19
10
[ TestFixture ]
20
11
public class Fixture : TestCaseMappingByCode
21
12
{
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