SetUpAttribute
Attribute used to identify a method that is called
immediately before each test is run.
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class SetUpAttribute : NUnitAttribute
{
}
}