Hey all,
I'm trying to create a short bash script someone could run in cygwin to execute all nunit tests in a .NET project using nunit-console. Currently i have the system version of nunit aliased to "nunit" so if i run "nunit" it will execute nunit-console.
My first step was to try and find all the test assemblies recursively. This MOSTLY works:
find . -name *.Test*.dll
but it returns both /obj and /bin versions of a dll.
Second i need to figure out a way to pass all of the results from that find to nunit, preferably in one execution which so far I have no clue how to do.
Any cygwin / bash gurus out there that can help?