Cosmos/Users/Matthijs/DebugCompiler/MySource.cs
2016-02-14 14:58:19 +01:00

17 lines
370 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using Cosmos.TestRunner.Core;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
namespace DebugCompiler
{
public static class MySource
{
public static IEnumerable<Type> ProvideData()
{
return TestKernelSets.GetStableKernelTypes();
}
}
}