Ejemplo n.º 1
0
 static void setComponentNames(Matcher matcher, IMatcher[] matchers)
 {
     var componentNames = getComponentNames(matchers);
     if(componentNames != null) {
         matcher.componentNames = componentNames;
     }
 }
Ejemplo n.º 2
0
 public static IAllOfMatcher AllOf(params int[] indices)
 {
     var matcher = new Matcher();
     matcher._allOfIndices = distinctIndices(indices);
     return matcher;
 }