示例#1
0
文件: Matcher.cs 项目: tvilkov/csharp
 private Matcher(IAnnotationNameMapper mapper)
 {
     this.mapper = mapper;
 }
示例#2
0
文件: Matcher.cs 项目: tvilkov/csharp
 public static void Match(TraceContextInfo[] realInfos, TraceContextDescriptor[] expectedInfos, IAnnotationNameMapper mapper)
 {
     new Matcher(mapper).Match(realInfos, expectedInfos);
 }