How to find the current name of the test being executing? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T22:26:21Zhttp://stackoverflow.com/feeds/question/44899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44899/how-to-find-the-current-name-of-the-test-being-executing1How to find the current name of the test being executing?jdelator2008-09-04T22:25:34Z2009-03-25T16:46:21Z
<p>I know I can figure out the name of the method as its being executed, just wondering if there is a way from the setup method. I guess an attribute method would work but from the setup method it would be the best.</p>
<p>EDIT NUnit</p>
http://stackoverflow.com/questions/44899/how-to-find-the-current-name-of-the-test-being-executing/46996#469962Answer by quamrana for How to find the current name of the test being executing?quamrana2008-09-05T22:23:15Z2008-09-05T22:23:15Z<p>I know this is going to sound negative, but don't do it! :-)<br />
The idea behind the setup method is that it executes something required by <em>every</em> test, which means that it doesn't matter which test is being executed, so you don't need to know the name of the method.<br />
If you are after different data used in initialisation, then call a separate method with the data passed as a parameter from your test method.<br />
If you really want what you are asking for, then you may need a different method that takes the name of the current method as a parameter and call that from your test method.</p>
http://stackoverflow.com/questions/44899/how-to-find-the-current-name-of-the-test-being-executing/682428#6824280Answer by Jeff for How to find the current name of the test being executing?Jeff2009-03-25T16:46:21Z2009-03-25T16:46:21Z<p>I have this exact same problem - knowing the name of the test from the setUp. Your answer is unhelpful - since I exactly want to do something for every test in the setUp - print out the name of the test that is running in the log file! This facility is available in JUnit - NUnit has the name of the method when it runs the setup - it just doesn't provide access to it. This seems like a complete oversight to me.</p>