From c1a8d4a73bcf1f1e4086a264541e0c3b13d62998 Mon Sep 17 00:00:00 2001 From: stanac Date: Sun, 26 Mar 2017 08:19:23 +0200 Subject: [PATCH] fix typo --- docs/core/tools/dotnet-test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/dotnet-test.md b/docs/core/tools/dotnet-test.md index c0b00e0129178..cb3c160f882f5 100644 --- a/docs/core/tools/dotnet-test.md +++ b/docs/core/tools/dotnet-test.md @@ -24,7 +24,7 @@ ms.assetid: 4bf0aef4-148a-41c6-bb95-0a9e1af8762e ## Description -The `dotnet test` command is used to execute unit tests in a given project. Unit tests are console application projects that have dependencies on the unit test framework (for example, MSText, NUnit, or xUnit) and the dotnet test runner for the unit testing framework. These are packaged as NuGet packages and are restored as ordinary dependencies for the project. +The `dotnet test` command is used to execute unit tests in a given project. Unit tests are console application projects that have dependencies on the unit test framework (for example, MSTest, NUnit, or xUnit) and the dotnet test runner for the unit testing framework. These are packaged as NuGet packages and are restored as ordinary dependencies for the project. Test projects also must specify the test runner. This is specified using an ordinary `` element, as seen in the following sample project file: