using System;
using NUnit.Framework;
namespace ReproNCrunchIssue
{
[TestFixture]
public class TypeTests
{
[Datapoints]
private Type[] types = { typeof(int), typeof(string) };
[Theory]
public void TypeTest(Type type)
{
Assume.That(type, Is.Not.EqualTo(typeof(string)));
}
}
}
This fails, regardless of wheter or not the 'Consider inconclusive tests as passing' setting is enabled.