My shop has a precedent of checking in 3rd party tools to source control and using relative paths in projects/builds to find everything. Also, as NUnit releases new versions there have been several versions of NUnit admitted to this 3rd party libraries section in source control, so that changing older tests wasn't necessary to start using newer versions.

However, Finalbuilder defines the path to nunit-console.exe in the Tools | Options menus, and not only does this path not use environment variables, but there's only one of it.

Is there some way I'm missing to supply a path to the NUnit action?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can do this in the BeforeAction script event (javaScript) :

var nunitOptions = GetOptionsObject("NUnit")
nunitOptions.NUnitLocation = FBVariables.MYUNITPATH

where MYUNITPATH is a FinalBuilder Project variable that points to nunit. Note that you should avoid relative paths for this since they are not fully supported due to the multithreaded nature of FB.

link|improve this answer
Nice! That looks pretty slick--I'll give it a shot. I'm confused about the unsupportedness of relative paths due to multithreadedness though; I wouldn't normally correlate those two things. How do they conflict? – bwerks Sep 4 '10 at 8:58
Interesting. The event you suggest works lke a charm! However, if the NUnitLocation path is not set prior to executing the script, the script fails validation and never starts. – bwerks Sep 5 '10 at 2:55
Windows typically uses the current directory of an application to resolve relative paths. FinalBuilder is multi-threaded, so there is no guarantee of what the current directory will be. You might want to contact support or post on our forums, lots of FinalBuilder specific stuff there. – Vincent Parrett Sep 5 '10 at 13:40
Oh, validation is optional, you can turn it off.. it's really just designed to help beginners get their build process and environment configured. – Vincent Parrett Sep 5 '10 at 13:41
ps. don't forget to accept my answer thx. – Vincent Parrett Sep 5 '10 at 13:42
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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