mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
438 B
C#
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();
|
|
}
|
|
}
|
|
}
|