Files
Adrian Conlon c0a964fadb .net 9 analysis
2024-10-12 10:52:47 +01:00

27 lines
613 B
C#

namespace M6502.HarteTest
{
internal sealed class Test
{
public string? Name { get; set; }
public State? Initial { get; set; }
public State? Final { get; set; }
public List<List<object>>? Cycles { get; set; }
public IEnumerable<Cycle> AvailableCycles()
{
if (this.Cycles is null)
{
throw new InvalidOperationException("Cycles have not been initialised");
}
foreach (var cycle in this.Cycles)
{
yield return new Cycle(cycle);
}
}
}
}