public static bool IsMscorlib(this TestProject self) => self.Name.Contains("mscorlib");
public static bool IsMonotouch(this TestProject self) => self.Name.Contains("monotouch");
public static bool IsBclxUnit(this TestProject self) => self.IsBclTest() && (self.Name.Contains("xUnit") || self.IsMscorlib());
public static bool IsBclTest(this TestProject self) => self.Path.Contains("bcl-test");