コード例 #1
0
        internal static IFormatParser CreateFiddlerFormatParserFromString(params string[] segments)
        {
            IFormatParser formatParser = new FiddlerTextParser();

            formatParser.Setup(BuildFile(string.Concat(segments)), "in memory", false, false);
            return(formatParser);
        }
コード例 #2
0
 public void FiddlerParserDisposeAfterConstruction()
 {
     // Arrange, act and assert
     using (FiddlerTextParser sut = new FiddlerTextParser())
     {
     }
 }