Cosmos/Users/Matthijs/DebugCompiler/MyEngineAttribute.cs
2016-02-14 14:32:30 +01:00

17 lines
438 B
C#

using System;
using System.Collections.Generic;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
using NUnit.Framework.Internal;
namespace DebugCompiler
{
[AttributeUsage(AttributeTargets.Class)]
public class MyEngineAttribute: NUnitAttribute, IFixtureBuilder
{
public IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo)
{
throw new System.NotImplementedException();
}
}
}