Lawo.ComponentModel.PropertyChangedTest.NullReferenceExceptionBugTest C# (CSharp) Method

NullReferenceExceptionBugTest() private method

private NullReferenceExceptionBugTest ( ) : void
return void
        public void NullReferenceExceptionBugTest()
        {
            var source = new Addend(1);
            var target = new NullReferenceExceptionBug();
            CalculatedProperty.Create(
                source.GetProperty(o => o.AddendValue), v => v, target.GetProperty(o => o.Value)).Dispose();
        }