I have developed some C++ code with Visual Studio 2015, which I have just committed to my Visual Studio Online repo. I notice it has a Test feature, in the options: Code, Work, Build, Test, Release. When developing the code, I built some Unit Tests, using Visual Studio's built-in test framework. Can I configure these to be run as part of the Test step in the repo, to ensure future build's pass requirements?
my unit tests are currently in the same solution as the code in a .vcxproj file which contains the actual tests as .cpp files.
