I would like to test an app that uses the Clipboard (WindowsForms) and I need the Clipboard in my Unittests also. In order to use it, it should run in STA mode, but since the NUnit Testfixture does not have a main method, I don't know where/how to annotate it...

Thanks!

link|improve this question

By curiosity, will it not suffice to add the attribute [STATThread] on top of your TextFixture/TestMethod/TestClass? – Will Marcouiller Mar 12 '10 at 16:29
It only works on Methods, and it didn't work on fixturesetups, testmethods,... Ofcourse I might have overlooked sth. You are welcome to answer if you find any other solution. – Peter Mar 12 '10 at 16:37
feedback

2 Answers

up vote 12 down vote accepted

For NUnit 2.2, 2.4 (See simple solution below for 2.5):

Add an app.config file to the project containing your unit tests and include the following:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
        <sectionGroup name="NUnit">
        <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
    </sectionGroup>
    </configSections>
    <NUnit>
        <TestRunner>
            <add key="ApartmentState" value="STA"/>
        </TestRunner>
    </NUnit>
</configuration>

You can verify that the apartment threading is STA with the following C# code:

if (Thread.CurrentThread.GetApartmentState() != ApartmentState.STA)
{
   throw new ThreadStateException("The current threads apartment state is not STA");
}
link|improve this answer
2  
Simple, yet frustrating, question, immediate working answer : some days I just love SO. – Peter Mar 12 '10 at 16:30
Almost forgetting : Thanks man – Peter Mar 12 '10 at 16:31
If you're ever looking for it again (and SO is down) this is from the sample config provided in WatiN. Glad I could help. :) – Bernhard Hofmann Mar 12 '10 at 16:34
Surprisingly, it even works when using Resharper to run the tests inside VS2010. Many thanks! – Lee Oades Oct 15 '10 at 10:16
Wow, you just fixed something I've been pulling my hair out over for a while. Another one of those times when I wish I could upvote more than once. – mdm Nov 16 '10 at 10:48
show 1 more comment
feedback

If you are using nunit 2.5+, you can use the new The RequiresSTAAttribute at class

[TestFixture, RequiresSTA]

or assembly level.

[assembly:RequiresSTA]

No need for config file. check: http://www.nunit.org/index.php?p=requiresSTA&r=2.5

link|improve this answer
2  
This is the only thing that worked for me when trying to run tests using ReSharper 5.1's test runner from Visual Studio 2010 SP1. – Jim Raden May 23 '11 at 15:03
2  
Thanks, it worked for me! Better than the accepted answer. – Andrey Oct 23 '11 at 7:56
1  
You can also use RequiresSTA on individual test methods, and the BCL STAThread attribute works as a synonym for RequiresSTA. – Alex Humphrey Feb 15 at 11:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.