public void TestView()
 {
     //
     // TODO: Add test logic here
     //
     MediaContentController controller = new MediaContentController();
     string result = controller.TestIndex();
     Assert.AreEqual("Index View", result);
 }
 public void CreateTest()
 {
     MediaContentController target = new MediaContentController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Create();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 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.");
 }
 public void MediaContentControllerConstructorTest()
 {
     MediaContentController target = new MediaContentController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }