Skip to content

Commit d465fad

Browse files
NH-2176 - checking if that is the Values attribute which causes TeamCity to no more show the test in the failing ones.
1 parent 532ee83 commit d465fad

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/NHibernate.Test/NHSpecificTest/DtcFailures/DtcFailuresFixture.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,18 @@ public void NH1744()
483483
}
484484

485485
[Test]
486+
public void CanUseSessionOutsideOfScopeAfterScope()
487+
{
488+
CanUseSessionOutsideOfScopeAfterScope(false);
489+
}
490+
491+
[Test]
492+
public void CanUseSessionOutsideOfScopeAfterScopeWithFlush()
493+
{
494+
CanUseSessionOutsideOfScopeAfterScope(true);
495+
}
496+
497+
//[Test]
486498
public void CanUseSessionOutsideOfScopeAfterScope([Values(false, true)] bool explicitFlush)
487499
{
488500
using (var s = sessions.WithOptions().ConnectionReleaseMode(ConnectionReleaseMode.OnClose).OpenSession())

0 commit comments

Comments
 (0)