source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/lib/NUnit/NUnit-2.5.10.11092/samples/Extensibility/Core/SampleSuiteExtension/SampleSuiteExtensionAttribute.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 624 bytes
Line 
1// ****************************************************************
2// Copyright 2007, Charlie Poole
3// This is free software licensed under the NUnit license. You may
4// obtain a copy of the license at http://nunit.org/?p=license&r=2.4
5// ****************************************************************
6
7using System;
8
9namespace NUnit.Core.Extensions
10{
11 /// <summary>
12 /// SampleSuiteExtensionAttribute is used to identify a SampleSuiteExtension fixture
13 /// </summary>
14 [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
15 public sealed class SampleSuiteExtensionAttribute : Attribute
16 {
17 }
18}
Note: See TracBrowser for help on using the repository browser.