From a248b998c6b01a135657ef220606a9ec6ce86b6c Mon Sep 17 00:00:00 2001 From: lioncash Date: Fri, 5 Sep 2014 17:06:57 -0700 Subject: [PATCH] Just some stylistic cleanup. --- Running unit tests.md => Running-Unit-Tests.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename Running unit tests.md => Running-Unit-Tests.md (81%) diff --git a/Running unit tests.md b/Running-Unit-Tests.md similarity index 81% rename from Running unit tests.md rename to Running-Unit-Tests.md index 10253af..ab88aae 100644 --- a/Running unit tests.md +++ b/Running-Unit-Tests.md @@ -2,9 +2,10 @@ The Dolphin source code contains unit tests that aim to: * Help find bugs when porting Dolphin to a new platform * Make refactoring and code changes safer by enforcing API contracts -The tests are located in the ``Source/UnitTests`` directory and use the [Google Test](https://code.google.com/p/googletest/) framework. +The tests are located in the `Source/UnitTests` directory and use the [Google Test](https://code.google.com/p/googletest/) framework. ## Running tests on Windows +--- The UnitTests project is compiled as part of the normal build on Windows. There are a few ways to run the tests: @@ -25,9 +26,10 @@ Requires a version of Visual Studio supporting extensions. ``` ## Running tests on CMake-based systems (Linux / OS X) +--- -Use the ``unittests`` build target: +Use the `unittests` build target: make unittests -Each module test can also be run independently using the binaries in ``$OUTPUT_DIR/Binaries/Tests``. \ No newline at end of file +Each module test can also be run independently using the binaries in `$OUTPUT_DIR/Binaries/Tests`. \ No newline at end of file