EightBitNet/LR35902/LR35902.FuseTest/Tests.cs
Adrian Conlon a9a03d946a Refactor LR35902 test runner. Better, but still not working.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-20 19:17:08 +01:00

29 lines
676 B
C#

namespace Fuse
{
using System.Collections.Generic;
public class Tests
{
private readonly Lines lines;
public Dictionary<string, Test> Container { get; } = new Dictionary<string, Test>();
public Tests(string path) => this.lines = new Lines(path);
public void Read() => this.lines.Read();
public void Parse()
{
while (!this.lines.EndOfFile)
{
var test = new Test();
test.Parse(this.lines);
if (test.Valid)
{
this.Container.Add(test.Description, test);
}
}
}
}
}