diff --git a/Running-Unit-Tests.md b/Running-Unit-Tests.md index 08e9297..67c62a8 100644 --- a/Running-Unit-Tests.md +++ b/Running-Unit-Tests.md @@ -14,14 +14,14 @@ There are a few ways to run the tests: 1. Use the [Test Adapter for Google Test](https://marketplace.visualstudio.com/items?itemName=VisualCPPTeam.TestAdapterforGoogleTest) extension for Visual Studio in order to integrate tests into the Test Explorer. -2. Invoking execution via msbuild with the `RunUnitTests` property, for example: +2. Invoke execution via msbuild with the `RunUnitTests` property, for example: ``` pushd Source msbuild /v:m /m /p:Platform=x64 /p:Configuration=Release /p:RunUnitTests=true dolphin-emu.sln ``` -3. You can also go to the UnitTests build output directory and directly run the binary: +3. Directly run the UnitTests binary: ``` pushd Build\x64\Release\UnitTests\bin