From 3bf43bc55b5fd74d777f43d23f86933e05f787c7 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 9 Sep 2021 11:54:24 +0200 Subject: [PATCH] Add notes on XUnit test setup --- DotNet/C#/Unit Testing.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DotNet/C#/Unit Testing.md b/DotNet/C#/Unit Testing.md index b9668f3..0eb214e 100644 --- a/DotNet/C#/Unit Testing.md +++ b/DotNet/C#/Unit Testing.md @@ -28,6 +28,13 @@ namespace Project.Tests } ``` +### Test Setup & Teardown + +xUnit.net creates a new instance of the test class for every test that is run, so any code which is placed into the constructor of the test class will be run for every single test. +This makes the constructor a convenient place to put reusable context setup code. + +For context cleanup, add the `IDisposable` interface to the test class, and put the cleanup code in the `Dispose()` method. + ## Mocking with Moq ```cs