public WorkflowUtilities() { this._flexableDto = new OrderDto(); this._validate = new ValidationTools(); this._stateBus = new StateBusiness(); this._prodBus = new ProductBusiness(); }
public void GetNameTest(string input, bool expected) { ValidationTools obj = new ValidationTools(); bool actual = obj.ValidateCustomerName(input); Assert.AreEqual(expected, actual); }
public void GetIntTest(string input, bool expected) { ValidationTools obj = new ValidationTools(); bool actual = obj.ValidateInt(input); Assert.AreEqual(expected, actual); }