BudgetAnalyser.Engine.UnitTest.Matching.DtoToMatchingRuleMapperTest.ShouldSetRuleIdDateToNowIfGivenNull C# (CSharp) 메소드

ShouldSetRuleIdDateToNowIfGivenNull() 개인적인 메소드

private ShouldSetRuleIdDateToNowIfGivenNull ( ) : void
리턴 void
        public void ShouldSetRuleIdDateToNowIfGivenNull()
        {
            TestData.RuleId = null;
            var subject = new Mapper_MatchingRuleDto_MatchingRule(new BucketBucketRepoAlwaysFind());
            Result = subject.ToModel(TestData);
            Assert.IsFalse(Result.RuleId == default(Guid));
        }