public void DeleteTest()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     int id = 0; // TODO: Initialize to an appropriate value
     FormCollection collection = null; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Delete(id, collection);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void AdministracjaControllerConstructorTest()
 {
     AdministracjaController target = new AdministracjaController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void WyswietlPostyTest()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     int page = 0; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.WyswietlPosty(page);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void SzukajTest()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     string zapytanie = string.Empty; // TODO: Initialize to an appropriate value
     int page = 0; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Szukaj(zapytanie, page);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void PostyOznaczoneTagiemTest()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     string id = string.Empty; // TODO: Initialize to an appropriate value
     int page = 0; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.PostyOznaczoneTagiem(id, page);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void listaTest()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     SelectList expected = null; // TODO: Initialize to an appropriate value
     SelectList actual;
     actual = target.lista();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DodajKomTest1()
 {
     AdministracjaController target = new AdministracjaController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.DodajKom();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }