PageRenderTime 31ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/framework/Attributes/TestFixtureSetUpAttribute.cs

#
C# | 19 lines | 8 code | 2 blank | 9 comment | 0 complexity | 9fb2ec3a5faa0d3fff250769aca52c85 MD5 | raw file
Possible License(s): GPL-2.0
  1. // ****************************************************************
  2. // This is free software licensed under the NUnit license. You
  3. // may obtain a copy of the license as well as information regarding
  4. // copyright ownership at http://nunit.org.
  5. // ****************************************************************
  6. namespace NUnit.Framework
  7. {
  8. using System;
  9. /// <summary>
  10. /// Attribute used to identify a method that is
  11. /// called before any tests in a fixture are run.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
  14. public class TestFixtureSetUpAttribute : Attribute
  15. {
  16. }
  17. }