public void Bindable_RaisePropertyChanged_CallingRaisesPropertyChanged()
        {
            List <string> receivedEvents = new List <string>();

            TestBindableClass bindable = new TestBindableClass();

            bindable.PropertyChanged += delegate(object sender, PropertyChangedEventArgs e)
            {
                receivedEvents.Add(e.PropertyName);
            };

            bindable.RaisePropertyChanged(() => bindable.BindableBool);

            Assert.AreEqual(1, receivedEvents.Count);
            Assert.AreEqual(nameof(TestBindableClass.BindableBool), receivedEvents[0]);
        }