コード例 #1
0
        public void Index()
        {
            AsciiFormController controller = new AsciiFormController();

            ViewResult result = controller.Index() as ViewResult;

            Assert.IsNotNull(result);
        }
コード例 #2
0
        public void AsciiMapPath()
        {
            AsciiFormController controller = new AsciiFormController();
            AsciiForm           formData   = new AsciiForm()
            {
                AsciiMap = null
            };

            var result = controller.AsciiMapPath(formData);

            Assert.IsInstanceOfType(result, typeof(ActionResult));
        }