ChangeTracking.Tests.INotifyPropertyChangedTests.AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged C# (CSharp) 메소드

AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged() 개인적인 메소드

        public void AsTrackable_Should_Make_Object_Implement_INotifyPropertyChanged()
        {
            var order = Helper.GetOrder();

            Order trackable = order.AsTrackable();

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