コード例 #1
0
        public void FormatToday_Iso_Utc()
        {
            var clock = new Mock<IClock>();
            var diary = new Diary(clock.Object, CalendarSystem.Iso, DateTimeZone.Utc);

            string today = diary.FormatToday();
            Assert.AreEqual("1970-01-01", today);
        }
コード例 #2
0
 public DiaryPresenter(Diary diary, License license)
 {
     _diary = diary;
     _license = license;
 }