public void CheckTimeTest()
        {
            PresentationModel presentationModel = new PresentationModel(new Model());
            const int         TEN = 10;

            presentationModel.Set(true);
            Assert.AreEqual(TEN, presentationModel.CheckTime(TEN));
            presentationModel.Set(false);
            Assert.AreEqual(0, presentationModel.CheckTime(TEN));
        }