using System.Collections.Generic; using Newtonsoft.Json.Linq; using ProjectTestRunner.HandlerResults; namespace ProjectTestRunner.Handlers { public interface IHandler { string HandlerName { get; } IHandlerResult Execute(IReadOnlyDictionary tokens, IReadOnlyList results, JObject json); string Summarize(IReadOnlyDictionary tokens, JObject json); } }