public void CheckLastDataTest()
        {
            PresentationModel presentationModel = new PresentationModel(new Model());
            Model             model             = new Model();
            const string      TEN = "10";

            presentationModel.Start(TEN, 0);
            presentationModel.CheckLastData();
            Assert.AreEqual(1, presentationModel.GetIndexCounter());
        }
        public void GetIndexCounterTest()
        {
            PresentationModel presentationModel = new PresentationModel(new Model());

            Assert.AreEqual(0, presentationModel.GetIndexCounter());
        }