示例#1
0
 public static bool IsMscorlib(this TestProject self) => self.Name.Contains("mscorlib");
示例#2
0
 public static bool IsMonotouch(this TestProject self) => self.Name.Contains("monotouch");
示例#3
0
 public static bool IsBclxUnit(this TestProject self)
 => self.IsBclTest() && (self.Name.Contains("xUnit") || self.IsMscorlib());
示例#4
0
 public static bool IsBclTest(this TestProject self) => self.Path.Contains("bcl-test");