I have a .NET solution that works together with some classic ASP pages, as well as some T-SQL stored procedures. I also have a product built with web technologies: JQuery, HTML5, CSS 3. What I need is to install unit testing frameworks for these products in such a way that I can run a build against all of these at once, and get a single unit test execution across these frameworks.
Is this possible?
A build scripting tool like NAnt or MSBuild should do the job.
You’d have one script invoking multiple tasks.. one for each different test runner. Most unit test frameworks have console runners which integrate nicely with the build tools.