TestFixtureSetUpAttribute
Attribute used to identify a method that is
called before any tests in a fixture are run.
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
[Obsolete("Use OneTimeSetUpAttribute")]
public class TestFixtureSetUpAttribute : OneTimeSetUpAttribute
{
}
}