Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:17:56Z http://stackoverflow.com/feeds/question/343521 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/343521/using-nunit-2-5-requiresstaattribute-with-teamcity-4 2 Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4 Ruben Bartelink 2008-12-05T11:06:36Z 2008-12-29T11:55:13Z <p>Using TeamCity, I'm trying to get a (TestAutomationFX) test that requires an STA thread to run .</p> <p>It works via a custom app.config that configures NUnit 2.4.x (8) (as referred to by Gishu, thanks, described at <a href="http://madcoderspeak.blogspot.com/2008/12/getting-nunit-to-go-all-sta.html" rel="nofollow">http://madcoderspeak.blogspot.com/2008/12/getting-nunit-to-go-all-sta.html</a>)</p> <p>It works via:</p> <pre><code>/// &lt;summary&gt; /// Via Peter Provost / http://www.hedgate.net/articles/2007/01/08/instantiating-a-wpf-control-from-an-nunit-test/ /// &lt;/summary&gt; public static class CrossThreadTestRunner // To be replaced with (RequiresSTA) from NUnit 2.5 { public static void RunInSTA(Action userDelegate) { Exception lastException = null; Thread thread = new Thread(delegate() { try { userDelegate(); } catch (Exception e) { lastException = e; } }); thread.SetApartmentState(ApartmentState.STA); thread.Start(); thread.Join(); if (lastException != null) ThrowExceptionPreservingStack(lastException); } [ReflectionPermission(SecurityAction.Demand)] static void ThrowExceptionPreservingStack(Exception exception) { FieldInfo remoteStackTraceString = typeof(Exception).GetField( "_remoteStackTraceString", BindingFlags.Instance | BindingFlags.NonPublic); remoteStackTraceString.SetValue(exception, exception.StackTrace + Environment.NewLine); throw exception; } } </code></pre> <p>I'm hoping to use something built in. So NUnit 2.5.0.8322 (Beta 1)'s RequiresSTAAttribute seems ideal. It works standalone, but not via TeamCity, even when I attempt to force the issue via:</p> <pre><code>&lt;NUnit Assemblies="Test\bin\$(Configuration)\Test.exe" NUnitVersion="NUnit-2.5.0" /&gt; </code></pre> <p>The docs say the runner supports 2.5.0 alpha 4? (<a href="http://www.jetbrains.net/confluence/display/TCD4/NUnit+for+MSBuild" rel="nofollow">http://www.jetbrains.net/confluence/display/TCD4/NUnit+for+MSBuild</a>)</p> <p>Probably answering my own question, 2.5.0 Aplha 4 doesnt have RequiresSTAAttribute, hence the runner is not honouring my Attribute...</p> http://stackoverflow.com/questions/343521/using-nunit-2-5-requiresstaattribute-with-teamcity-4/343532#343532 0 Answer by Gishu for Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4 Gishu 2008-12-05T11:13:07Z 2008-12-05T11:16:02Z <p>Can you see if this helps? Setting STA via the .config file approach... as in pre NUnit 2.5</p> <p><a href="http://madcoderspeak.blogspot.com/2008/12/getting-nunit-to-go-all-sta.html" rel="nofollow">http://madcoderspeak.blogspot.com/2008/12/getting-nunit-to-go-all-sta.html</a></p> http://stackoverflow.com/questions/343521/using-nunit-2-5-requiresstaattribute-with-teamcity-4/343589#343589 0 Answer by Ruben Bartelink for Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4 Ruben Bartelink 2008-12-05T11:39:22Z 2008-12-05T11:39:22Z <p>For now, I'm using:</p> <pre><code> private void ForceSTAIfNecessary(ThreadStart threadStart) { if (Thread.CurrentThread.GetApartmentState() == ApartmentState.STA) threadStart(); else CrossThreadTestRunner.RunInSTA(threadStart); } [Test] public void TestRunApp() { ForceSTAIfNecessary(TestRunAppSTA); } public void TestRunAppSTA() { Assert.That(Thread.CurrentThread.GetApartmentState(), Is.EqualTo(ApartmentState.STA)); ... } </code></pre> <p>instead of:</p> <pre><code> [RequiresSTA] public void TestRunAppSTA() { Assert.That(Thread.CurrentThread.GetApartmentState(), Is.EqualTo(ApartmentState.STA)); ... } </code></pre> http://stackoverflow.com/questions/343521/using-nunit-2-5-requiresstaattribute-with-teamcity-4/397584#397584 1 Answer by Eugene Petrenko for Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4 Eugene Petrenko 2008-12-29T11:55:13Z 2008-12-29T11:55:13Z <p>TeamCity 4.0.1 contains NUnit 2.5.0 beta 2. I believe that should work for that case.</p>