コード例 #1
0
 public TimeValidatorTests()
 {
     _itemUnderTest = new TimeValidator();
 }
コード例 #2
0
 public TimeHigherThenAttribute(string otherProperty)
 {
     _otherProperty = otherProperty;
     _validator     = new DaysValidator();
 }
コード例 #3
0
 public TimeConverter(IBerlinClockContext berlinClockContext, ITimeValidator timeValidator)
 {
     _berlinClockContext = berlinClockContext;
     _timeValidator      = timeValidator;
 }