public void CheckViewTest()
        {
            PresentationModel presentationModel = new PresentationModel(new Model());

            RadioButton[] select = new RadioButton[4];
            const string  STRING = "WADE";
            const string  ERROR  = "It should become!!";
            const string  TEN    = "10";

            presentationModel.Start(TEN, 0);
            presentationModel.CheckView(STRING, select, 0);
            Assert.AreEqual(ERROR, presentationModel.GetStatusText());
        }