AK.F1.Timing.Model.Session.MessageModelTest.changes_to_the_commentary_property_raise_the_property_changed_event C# (CSharp) Method

changes_to_the_commentary_property_raise_the_property_changed_event() private method

        public void changes_to_the_commentary_property_raise_the_property_changed_event()
        {
            var model = new MessageModel();
            var observer = model.CreateObserver();

            model.Process(new AddCommentaryMessage("commentary"));
            Assert.True(observer.HasChanged(x => x.Commentary));
        }