public void ParseTest() { string sType = "Limit"; OfferType type = OfferTypeExtension.Parse(sType); Assert.AreEqual(OfferType.LIMIT, type); }
public void ParseLowerWithLowerDashTest() { string sType = "Stop_limit"; OfferType type = OfferTypeExtension.Parse(sType); Assert.AreEqual(OfferType.STOP_LIMIT, type); }