public void GetPocoEvents()
        {
            var testingPoco = new TestingEventPoco();

            testingPoco.MyEvent         += TestingListener.StandardCallback;
            testingPoco.PropertyChanged += TestingListener.PropertyChangedHandler;

            Approvals.VerifyAll(testingPoco.GetPocoEvents(), string.Empty);
        }
        public void GetEmptyPocoEvents()
        {
            var testingPoco = new TestingEventPoco();

            Assert.Equal(0, testingPoco.GetPocoEvents().Count());
        }
        public void GetEmptyPocoEvents()
        {
            var testingPoco = new TestingEventPoco();

            Assert.Empty(testingPoco.GetPocoEvents());
        }