Cosmos/Tests/Cosmos.TestRunner.UnitTest/MySource.cs
José Pedro b216608e3f Fixed Cosmos.sln
Fixed some unit test projects.
2017-02-03 15:29:11 +00:00

17 lines
383 B
C#

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