public void TestView() { // // TODO: Add test logic here // MediaContentController controller = new MediaContentController(); string result = controller.TestIndex(); Assert.AreEqual("Index View", result); }
public void TestIndexTest() { MediaContentController target = new MediaContentController(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; actual = target.TestIndex(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }