~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/framework/TestFixtureAttribute.cs

  • Committer: jnewkirk
  • Date: 2002-07-10 20:05:24 UTC
  • Revision ID: vcs-imports@canonical.com-20020710200524-z33q2om2qvsgs6kg
initialĀ load

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright (C) 2002. James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. All Rights Reserved.
 
3
//
 
4
namespace Nunit.Framework
 
5
{
 
6
        using System;
 
7
 
 
8
        /// <summary>
 
9
        /// TestFixtureAttribute
 
10
        /// </summary> 
 
11
        /// <example>
 
12
        /// [TestFixture]
 
13
        /// public class ExampleClass 
 
14
        /// {}
 
15
        /// </example>
 
16
        [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
 
17
        public sealed class TestFixtureAttribute : Attribute
 
18
        {}
 
19
}
 
 
b'\\ No newline at end of file'