-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds NUnit test tutorial for .NET Core Visual Basic #3859
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also really great content. Just a couple quick fixes, and then I'll merge it.
Thanks!
Change the directory back to the *unit-testing-vb-using-stest* directory. Run [`dotnet sln add .\PrimeService\PrimeService.vbproj`](../tools/dotnet-sln.md) | ||
to add the class library project to the solution. | ||
|
||
### Install the NUnit project template |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
H2 instead of H3.
|
||
### Install the NUnit project template | ||
|
||
The NUnit test project templates need to be installed before creating a test project. This only needs to be done once. Run [`dotnet new -i NUnit3.DotNetNew.Template`](../tools/dotnet-new.md) to install the NUnit templates. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as the C# project: Let's clarify that this is a per machine install.
@BillWagner suggested changes to installing the project template have been made and this is ready for re-review. |
Thanks again @rprouse These are a great addition. I'll Thanks again. 🎆 |
Summary
The Getting Started with Testing page for .NET Core has tutorials for xUnit and MSTest. This adds documentation and a sample project for NUnit in Visual Basic. To keep the size of the PRs manageable, I have submitted C# and F# tutorials separately.
See #1785 - Document NUnit in .NET Core Guide > Unit Testing