public void Test_OverrideEventComputeFunc_Creation_FailInvokeWithNullArgument() { var func = new OverrideEventComputeFunc(); Action act = () => func.Invoke(null); act.Should().Throw <ArgumentException>().WithMessage("Argument for ComputeFunc must be provided"); }
public void Test_OverrideEventComputeFunc_Creation() { var func = new OverrideEventComputeFunc(); Assert.NotNull(func); }