ChangeTracking.Tests.INotifyPropertyChangedTests.AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged C# (CSharp) Метод

AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged() приватный Метод

private AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged ( ) : void
Результат void
        public void AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged()
        {
            var order = Helper.GetOrder();

            Order trackable = order.AsTrackable();

            trackable.Should().BeAssignableTo<System.ComponentModel.INotifyPropertyChanged>();
        }