CoD
With Parents on pages WSJF Columns
This commit is contained in:
@ -76,60 +76,60 @@ public class MESAFIBACKLOG
|
||||
return new(results);
|
||||
}
|
||||
|
||||
private static ReadOnlyCollection<WorkItem> GetWorkItems(FileInfo fileInfo)
|
||||
private static ReadOnlyCollection<Record> GetRecords(FileInfo fileInfo)
|
||||
{
|
||||
WorkItem[] results;
|
||||
Record[] results;
|
||||
string json = File.ReadAllText(fileInfo.FullName);
|
||||
results = JsonSerializer.Deserialize<WorkItem[]>(json);
|
||||
results = JsonSerializer.Deserialize<Record[]>(json);
|
||||
return new(results);
|
||||
}
|
||||
|
||||
private static void Verify122508(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 10);
|
||||
// Assert.IsTrue(workItems.Count == 6);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 10);
|
||||
// Assert.IsTrue(records.Count == 6);
|
||||
}
|
||||
|
||||
private static void Verify122514(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 25);
|
||||
// Assert.IsTrue(workItems.Count == 6);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 25);
|
||||
// Assert.IsTrue(records.Count == 6);
|
||||
}
|
||||
|
||||
private static void Verify126169(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 1);
|
||||
// Assert.IsTrue(workItems.Count == 1);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 1);
|
||||
// Assert.IsTrue(records.Count == 1);
|
||||
}
|
||||
|
||||
private static void Verify123066(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 24);
|
||||
// Assert.IsTrue(workItems.Count == 5);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 24);
|
||||
// Assert.IsTrue(records.Count == 5);
|
||||
}
|
||||
|
||||
private static void Verify123067(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 24);
|
||||
// Assert.IsTrue(workItems.Count == 5);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 24);
|
||||
// Assert.IsTrue(records.Count == 5);
|
||||
}
|
||||
|
||||
private static void Verify122517(FileInfo fileInfo)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(fileInfo);
|
||||
Assert.IsNotNull(workItems);
|
||||
// Assert.IsTrue(workItems.Count == 14);
|
||||
// Assert.IsTrue(workItems.Count == 14);
|
||||
ReadOnlyCollection<Record> records = GetRecords(fileInfo);
|
||||
Assert.IsNotNull(records);
|
||||
// Assert.IsTrue(records.Count == 14);
|
||||
// Assert.IsTrue(records.Count == 14);
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
|
Reference in New Issue
Block a user