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