Exemplo n.º 1
0
        public void Roman_History_TimeLine_Borders()
        {
            TimelineHelper.OpenHumanityTimeline();
            TimelineHelper.OpenRomanHistoryTimeline();
            const double expected    = 942;
            double       leftBorder  = TimescaleHelper.GetLeftBorderDate();
            double       rightBorder = TimescaleHelper.GetRightBorderDate();

            Assert.AreEqual(expected, rightBorder - leftBorder);
        }
Exemplo n.º 2
0
        public void Roman_History_TimeLine_Borders_Ages()
        {
            TimelineHelper.OpenHumanityTimeline();
            TimelineHelper.OpenRomanHistoryTimeline();
            const string leftBorderAge = "BCE";
            const string righBorderAge = "CE";
            string       leftBorder    = TimescaleHelper.GetLeftBorderDateAge();
            string       rightBorder   = TimescaleHelper.GetRightBorderDateAge();

            Assert.AreEqual(leftBorderAge, leftBorder);
            Assert.AreEqual(righBorderAge, rightBorder);
        }