Integrate Unit test into Visual Studio Express 2008 - unit-testing

Is it possible to integrate any unit test framework into VS2008 express?

NUnit
(Google is your friend.)
Edit: A very similar question: Best way to do TDD in express versions of visual studio(eg VB Express)

Related

How can I get PEX to auto-generate unit tests?

How I can get PEX to auto-generate unit tests in Visual Studio 2013?
I can auto-generate unit tests with PEX in visual studio 2010 and the menu was found by right clicking in the function body.
We did not release a version for Visual Studio 2013.
The good news is that you can now do that same auto-generation of unit tests in Visual Studio 2015 using the "Smart Unit Tests" feature.
For Visual Studio 2013, they do provide PEX framework (lightweight version) named as CodeDigger.
But CodeDigger is limited that it just generates a table of all the possible combinations of inputs and output.
No options to copy that table or Save any of the test suites.
CodeDigger gives a minimal help. Not so great

Is there any extension for visual studio to optimize C++ code unit testing?

In C# .Net there is nice Microsoft.VisualStudio.TestTools.UnitTesting framework that is integrated into IDE. Is there any extension for visual studio (2012 or 2013) that would do similar IDE test framework integration (for boost.test or any onter C++ testing framework)?
There is the CppUnitTestFramework, look here: http://msdn.microsoft.com/en-us/library/hh694604.aspx
It is integrated in the IDE and comes with a code coverage tool which is quite useful.
There is Boost Unit Test Adapter for VS2012 (but not VS2013).

Tutorial for Visual Studio Unit Testing Framework?

I would like start to learn Visual Studio Unit Testing Framework on VS 2012 Express for Web.
Mainly for ASP.NET MVC project.
I already buy the hard copy of Art of unit test from amazon.
But it is lack of tutorial aims for VS unit testing framework.
So any resource i can have?
Another question, when i research on this forum,
I found someone said MSTEST is different from VS unit test framework.
Is the VS 2010 Express built-in unit test is subset of VSTS?
Thanks you.
For all practical purposes mstest is the unit testing framework in Visual Studio 2010. It continues to be the primary unit testing framework in 2012 as well. However now we support extensibility and many 3rd party frameworks like xunit/nunit/gtest etc have adapters for our platform.
For ASP.NET the best place to start is to download the MVC3/MVC4 solutions from Microsoft which contain a rich suite of unit tests with them.

Need Visual Studio 2005 Compatible C++ Unit Testing Framework

Would you please recommend a C++ unit testing framework which works on Visual Studio 2005 and has all or most of features? I cant find any.
And please give a guide\tutorial to use it.
I've used Boost.Test and UnitTest++ on VS2005 without any problems.
here I am using Google C++ Testing Framework which works well with Microsoft Visual Studio 2005 Express Edition. For a tutorial you can check the documentation
Visual Assert should be compatible with Visual Studio 2005.
I haven't tried it though.
http://www.visualassert.com/unit-testing-framework/download.html
I believe any FW which supports latest version of Visual Studio will will do, as Visual Studio 2005 is quite similar to the those.
Anyway, both CxxTest and GTest worked for my.

Switching from MSTest to another unit test framework in VS 2010

Visual Studio 2010 offers a lot of comfortable tools for unit testing via its built in test runner. Unfortunately we can't use MSTest for our unmanaged c++ codebase. Is it possible to switch from MSTest to e.g. Google.Test and have it integrated with the built in Visual Studio test runner?
Thanks in advance!
I have not seen anyway to integrate another unit testing framework into the VS test runner.
You might look at some VS add-in test runners, testdriven.net and gallio are two.
Kindness,
Dan
It's possible to use gtest (google test) in VS2010 and have it integrated with the IDE thanks to the extension: GoogleTestAddin
You can be interested by this similar thread: Viewing Google Test results within Visual Studio