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