Set Up & Tear Down

[TextFixture]
public class TestClass
{
	private Math _math;

	[SetUp]
	public void SetUp()
	{
		_math = new Math();
	}
	
	[TearDown]
	public void TearDown() {}

	[Test]
	public void MethodName_ScenarioName_ExpectedBehaviour()
	{
		// Arrange
		
		// Act
		
		// Assert
		Assert.AreEqual(1, 1);
		Assert.That(true, Is.True);
	}
}