From f883343e90a2ae42e18eebbd90d48744b3c5bf7b Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Thu, 13 Jun 2013 22:05:48 +0300 Subject: [PATCH] Update UnitTests.md --- Docs/UnitTests.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Docs/UnitTests.md b/Docs/UnitTests.md index df582e4a..a9460eaa 100644 --- a/Docs/UnitTests.md +++ b/Docs/UnitTests.md @@ -25,3 +25,8 @@ When building within Visual Studio, the macro `$(ExcludeTests)` evaluates to `fa A unit tested dynamic library project should contain both the actual code and the testing code. In addition, the `$(DelayLoadTestDLL)` macro should be included in the linker *Delay Loaded Dlls* option. The VS unit testing framework introduces a dependency on *Microsoft.VisualStudio.TestTools.CppUnitTestFramework.dll* for dynamic library projects, which means that omitting the `$(DelayLoadTestDLL)` macro will result in the dynamic library failing to load. + + +### Running tests + +When you build the test project, the tests appear in **Test Explorer**. If Test Explorer is not visible, choose **Test** on the Visual Studio menu, choose **Windows**, and then choose **Test Explorer**. From there, you can run all or a subset of the tests.