mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-10 19:30:42 +00:00
16 lines
412 B
C#
16 lines
412 B
C#
namespace M6502.HarteTest
|
|
{
|
|
internal class ProcessorTestSuite(string location)
|
|
{
|
|
public string Location { get; set; } = location;
|
|
|
|
public IEnumerable<OpcodeTestSuite> OpcodeTests()
|
|
{
|
|
foreach (var filename in Directory.EnumerateFiles(this.Location, "*.json"))
|
|
{
|
|
yield return new OpcodeTestSuite(filename);
|
|
}
|
|
}
|
|
}
|
|
}
|