動作しているように見えるこのジェネレーターがありますが、生成された値を確認すると、null 値が選択されることはありません。null値を選択するジェネレーターをどのように書き込みますか。このコードは、「終了」日の null 値を選択しません。
public static Gen<DateTime?> NullableDateTimeGen()
{
var list = new List<DateTime?>();
if (list.Any() == false)
{
var endDate = DateTime.Now.AddDays(5);
var startDate = DateTime.Now.AddDays(-10);
list.AddRange(Enumerable.Range(0, 1 + endDate.Subtract(startDate).Days)
.Select(offset => startDate.AddDays(offset))
.Cast<DateTime?>()
.ToList());
list.Add(null);
list.Insert(0, null);
}
return from i in Gen.Choose(0, list.Count - 1)
select list[i];
}
public static Arbitrary<Tuple<DateRange, DateTime>> TestTuple()
{
return (from s in NullableDateTimeGen().Where(x => x != null)
from e in NullableDateTimeGen()
from p in NullableDateTimeGen().Where(x => x != null)
where s <= e
select new Tuple<DateRange, DateTime>(new DateRange(s.Value, e), p.Value))
.ToArbitrary();
}