File tree Expand file tree Collapse file tree 10 files changed +22
-22
lines changed
NHibernate.Test.VisualBasic/Issues/NH3302 Expand file tree Collapse file tree 10 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Namespace Issues
6
6
7
7
Namespace NH3302
8
8
'http://msdn.microsoft.com/en-us/library/swf8kaxw.aspx
9
- <TestFixture(), Ignore()> _
9
+ <TestFixture(), Ignore( "Not fixed yet" )> _
10
10
Public Class Fixture
11
11
Inherits IssueTestCase
12
12
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public class DefaultNsAssmFixture
94
94
95
95
#region NUnit.Framework.TestFixture Members
96
96
97
- [ TestFixtureSetUp ]
97
+ [ OneTimeSetUp ]
98
98
public void TestFixtureSetUp ( )
99
99
{
100
100
dir_ = Directory . GetCurrentDirectory ( ) ;
@@ -138,7 +138,7 @@ public virtual void TearDown()
138
138
{
139
139
}
140
140
141
- [ TestFixtureTearDown ]
141
+ [ OneTimeTearDown ]
142
142
public virtual void TestFixtureTearDown ( )
143
143
{
144
144
}
@@ -217,4 +217,4 @@ public void MixedSubclass()
217
217
// if no exception, success
218
218
}
219
219
}
220
- }
220
+ }
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ public class HbmOrderingFixture
132
132
133
133
#region NUnit.Framework.TestFixture Members
134
134
135
- [ TestFixtureSetUp ]
135
+ [ OneTimeSetUp ]
136
136
public void TestFixtureSetUp ( )
137
137
{
138
138
dir_ = Directory . GetCurrentDirectory ( ) ;
@@ -176,7 +176,7 @@ public virtual void TearDown()
176
176
{
177
177
}
178
178
179
- [ TestFixtureTearDown ]
179
+ [ OneTimeTearDown ]
180
180
public virtual void TestFixtureTearDown ( )
181
181
{
182
182
}
@@ -255,4 +255,4 @@ public void MixedSubclass()
255
255
// if no exception, success
256
256
}
257
257
}
258
- }
258
+ }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class NativeGuidGeneratorFixture
12
12
protected Configuration cfg ;
13
13
protected ISessionFactoryImplementor sessions ;
14
14
15
- [ TestFixtureSetUp ]
15
+ [ OneTimeSetUp ]
16
16
public void TestFixtureSetUp ( )
17
17
{
18
18
cfg = new Configuration ( ) ;
@@ -43,4 +43,4 @@ public void ReturnedValueIsGuid()
43
43
}
44
44
}
45
45
}
46
- }
46
+ }
Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ public class NonReflectiveBinderFixture
16
16
17
17
private Configuration cfg ;
18
18
19
- [ TestFixtureSetUp ]
19
+ [ OneTimeSetUp ]
20
20
public void SetUp ( )
21
21
{
22
22
cfg = new Configuration ( )
23
23
. AddResource ( "NHibernate.Test.MappingTest.Wicked.hbm.xml" , GetType ( ) . Assembly ) ;
24
24
cfg . BuildMappings ( ) ;
25
25
}
26
26
27
- [ TestFixtureTearDown ]
27
+ [ OneTimeTearDown ]
28
28
public void TearDown ( )
29
29
{
30
30
cfg = null ;
@@ -195,4 +195,4 @@ public void XmlSerialization()
195
195
}
196
196
}
197
197
}
198
- }
198
+ }
Original file line number Diff line number Diff line change 5
5
6
6
namespace NHibernate . Test . NHSpecificTest . NH1289
7
7
{
8
- [ TestFixture , Ignore ]
8
+ [ TestFixture , Ignore ( "Not fixed yet" ) ]
9
9
public class Fixture : BugTestCase
10
10
{
11
11
protected override void OnSetUp ( )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public abstract class BaseFixture
18
18
protected ISessionFactoryImplementor factory ;
19
19
private string expectedExportString ;
20
20
21
- [ TestFixtureSetUp ]
21
+ [ OneTimeSetUp ]
22
22
public void Config ( )
23
23
{
24
24
cfg = new Configuration ( ) ;
@@ -89,4 +89,4 @@ protected override string GetResourceName()
89
89
return "WithColumnNode.hbm.xml" ;
90
90
}
91
91
}
92
- }
92
+ }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class Fixture
25
25
private CultureInfo currentCulture = null ;
26
26
private CultureInfo currentUICulture = null ;
27
27
28
- [ TestFixtureSetUp ]
28
+ [ OneTimeSetUp ]
29
29
public void TestFixtureSetUp ( )
30
30
{
31
31
currentCulture = Thread . CurrentThread . CurrentCulture ;
@@ -36,7 +36,7 @@ public void TestFixtureSetUp()
36
36
Thread . CurrentThread . CurrentUICulture = turkish ;
37
37
}
38
38
39
- [ TestFixtureTearDown ]
39
+ [ OneTimeTearDown ]
40
40
public void TestFixtureTearDown ( )
41
41
{
42
42
Thread . CurrentThread . CurrentCulture = currentCulture ;
@@ -58,4 +58,4 @@ public void CheckIII()
58
58
Assert . AreEqual ( "iii_iii_iii" , ImprovedNamingStrategy . Instance . ColumnName ( "IiiIiiIii" ) ) ;
59
59
}
60
60
}
61
- }
61
+ }
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ static TestCase()
69
69
/// <summary>
70
70
/// Creates the tables used in this TestCase
71
71
/// </summary>
72
- [ TestFixtureSetUp ]
72
+ [ OneTimeSetUp ]
73
73
public void TestFixtureSetUp ( )
74
74
{
75
75
try
@@ -112,7 +112,7 @@ public void TestFixtureSetUp()
112
112
/// will occur if the TestCase does not have the same hbm.xml files
113
113
/// included as a previous one.
114
114
/// </remarks>
115
- [ TestFixtureTearDown ]
115
+ [ OneTimeTearDown ]
116
116
public void TestFixtureTearDown ( )
117
117
{
118
118
// If TestFixtureSetup fails due to an IgnoreException, it will still run the teardown.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public abstract class TypeSqlTypeFixture
25
25
protected Configuration cfg ;
26
26
protected ISessionFactoryImplementor factory ;
27
27
28
- [ TestFixtureSetUp ]
28
+ [ OneTimeSetUp ]
29
29
public void Config ( )
30
30
{
31
31
cfg = new Configuration ( ) ;
@@ -141,4 +141,4 @@ protected override string GetResourceName()
141
141
return "MultiTypeEntity_WithSqlType.hbm.xml" ;
142
142
}
143
143
}
144
- }
144
+ }
You can’t perform that action at this time.
0 commit comments