public void Index() { AsciiFormController controller = new AsciiFormController(); ViewResult result = controller.Index() as ViewResult; Assert.IsNotNull(result); }
public void AsciiMapPath() { AsciiFormController controller = new AsciiFormController(); AsciiForm formData = new AsciiForm() { AsciiMap = null }; var result = controller.AsciiMapPath(formData); Assert.IsInstanceOfType(result, typeof(ActionResult)); }