OneTimeSetUpAttribute
Attribute used to identify a method that is called once
to perform setup before any child tests are run.
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class OneTimeSetUpAttribute : NUnitAttribute
{
}
}