using System; using System.Collections.Generic; using System.IO; using System.Text.Json; namespace Adaptation.Shared.Methods; public interface IFileRead : Properties.IFileRead { void WaitForThread(); JsonProperty[] GetDefault(); string GetEventDescription(); List GetHeaderNames(); Dictionary GetDisplayNamesJsonElement(); Tuple> ReExtract(); List GetDescriptions(IFileRead fileRead, List tests, IProcessData processData); void Move(Tuple> extractResults, Exception exception = null); Tuple> GetExtractResult(string reportFullPath, string eventName); string[] Move(Tuple> extractResults, string to, string from, string resolvedFileLocation, Exception exception); }