internal static IFormatParser CreateFiddlerFormatParserFromString(params string[] segments) { IFormatParser formatParser = new FiddlerTextParser(); formatParser.Setup(BuildFile(string.Concat(segments)), "in memory", false, false); return(formatParser); }
public void FiddlerParserDisposeAfterConstruction() { // Arrange, act and assert using (FiddlerTextParser sut = new FiddlerTextParser()) { } }