ApprovalUtilities.Tests.Reflection.ReflectionUtilitiesTest.ControlWithLocalAndBaseKeys C# (CSharp) Method

ControlWithLocalAndBaseKeys() private method

private ControlWithLocalAndBaseKeys ( ) : void
return void
        public void ControlWithLocalAndBaseKeys()
        {
            var checkBox = new CheckBox();

            checkBox.CheckedChanged += TestingListener.AnotherStandardCallback;
            checkBox.Click += TestingListener.AnotherStandardCallback;
            checkBox.Click += TestingListener.StandardCallback;

            Approvals.VerifyAll(checkBox.GetEventHandlerListEvents(), string.Empty);
        }