public void FindBlue() { string raw = "5601 XL221 blue 622-14-323455-24 rockfish 632"; List <string> colorsFound = new RawProcessor().DetectPrimaryColors(raw); Assert.IsTrue(colorsFound.Contains("blue")); }
public void Bug35() { string raw = "I listen to the Blues."; List <string> colorsFound = new RawProcessor().DetectPrimaryColors(raw); Assert.IsTrue(colorsFound.Contains("blue")); }
public void FindYellow() { string raw = "Pass some yellow mustard, please."; List <string> colorsFound = new RawProcessor().DetectPrimaryColors(raw); Assert.IsTrue(colorsFound.Contains("yellow")); }