public void ParameterValidated_BothValue_Calls() { //setup var m = new MethodCheckSample(); //act m.TwoParameterObjectString(new object(), string.Empty); //assert }
public void ParameterValidated_BothNullValue_ThrowsException() { //setup var m = new MethodCheckSample(); //act m.TwoParameterObjectString(null, null); //assert }