/src/NUnit/core/SetUpFixture.cs
# · C# · 54 lines · 35 code · 6 blank · 13 comment · 3 complexity · baa7a901abcaa3ffc95de5aa5e92192b MD5 · raw file
- // ****************************************************************
- // This is free software licensed under the NUnit license. You
- // may obtain a copy of the license as well as information regarding
- // copyright ownership at http://nunit.org.
- // ****************************************************************
-
- using System;
- using System.IO;
- using System.Reflection;
-
- namespace NUnit.Core
- {
- /// <summary>
- /// SetUpFixture extends TestSuite and supports
- /// Setup and TearDown methods.
- /// </summary>
- public class SetUpFixture : TestSuite
- {
- #region Constructor
- public SetUpFixture( Type type ) : base( type )
- {
- this.TestName.Name = type.Namespace;
- if (this.TestName.Name == null)
- this.TestName.Name = "[default namespace]";
- int index = TestName.Name.LastIndexOf('.');
- if (index > 0)
- this.TestName.Name = this.TestName.Name.Substring(index + 1);
-
- this.fixtureSetUpMethods = Reflect.GetMethodsWithAttribute( type, NUnitFramework.SetUpAttribute, true );
- this.fixtureTearDownMethods = Reflect.GetMethodsWithAttribute( type, NUnitFramework.TearDownAttribute, true );
- }
- #endregion
-
- #region TestSuite Overrides
-
- /// <summary>
- /// Gets a string representing the kind of test
- /// that this object represents, for use in display.
- /// </summary>
- public override string TestType
- {
- get { return "SetUpFixture"; }
- }
-
- public override TestResult Run(EventListener listener, ITestFilter filter)
- {
- using ( new DirectorySwapper( AssemblyHelper.GetDirectoryName( FixtureType.Assembly ) ) )
- {
- return base.Run(listener, filter);
- }
- }
- #endregion
- }
- }