mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-04-07 19:37:14 +00:00
Harte test JSON files may be empty
This commit is contained in:
parent
ee584867c2
commit
d8735899d3
@ -8,8 +8,11 @@
|
||||
{
|
||||
foreach (var filename in Directory.EnumerateFiles(this.Location, "*.json"))
|
||||
{
|
||||
yield return new OpcodeTestSuite(filename);
|
||||
var fileInformation = new FileInfo(filename);
|
||||
if (fileInformation.Length > 0)
|
||||
{
|
||||
yield return new OpcodeTestSuite(filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user