File tree Expand file tree Collapse file tree 5 files changed +1416
-4
lines changed Expand file tree Collapse file tree 5 files changed +1416
-4
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ protected override bool AppliesTo(Dialect.Dialect dialect)
32
32
{
33
33
return false ;
34
34
}
35
- catch ( Exception )
36
- {
37
- Assert . Fail ( "Probably a bug in the test case." ) ;
38
- }
39
35
40
36
return true ;
41
37
}
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ namespace NHibernate . Test . NHSpecificTest . NH3850
4
+ {
5
+ public abstract class DomainClassBase
6
+ {
7
+ public virtual int Id { get ; set ; }
8
+ public virtual string Name { get ; set ; }
9
+ public virtual int ? Integer { get ; set ; }
10
+ public virtual long ? Long { get ; set ; }
11
+ public virtual decimal ? Decimal { get ; set ; }
12
+ public virtual double ? Double { get ; set ; }
13
+ public virtual DateTime ? DateTime { get ; set ; }
14
+ public virtual DateTimeOffset ? DateTimeOffset { get ; set ; }
15
+ public virtual decimal NonNullableDecimal { get ; set ; }
16
+ }
17
+
18
+ public class DomainClassAExtendingB : DomainClassBExtendedByA
19
+ {
20
+ }
21
+
22
+ public class DomainClassBExtendedByA : DomainClassBase
23
+ {
24
+ }
25
+
26
+ public class DomainClassCExtendedByD : DomainClassBase
27
+ {
28
+ }
29
+
30
+ public class DomainClassDExtendingC : DomainClassCExtendedByD
31
+ {
32
+ }
33
+
34
+ public class DomainClassE : DomainClassBase
35
+ {
36
+ }
37
+
38
+ public class DomainClassF : DomainClassBase
39
+ {
40
+ }
41
+
42
+ public class DomainClassGExtendedByH : DomainClassBase
43
+ {
44
+ }
45
+
46
+ public class DomainClassHExtendingG : DomainClassGExtendedByH
47
+ {
48
+ }
49
+ }
You can’t perform that action at this time.
0 commit comments