Esempio n. 1
0
 public void BLLGetCSVConstructorTest()
 {
     BLLGetCSV target = new BLLGetCSV();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Esempio n. 2
0
 public void CreateParkingDBTest()
 {
     BLLGetCSV target = new BLLGetCSV(); // TODO: Initialize to an appropriate value
     target.CreateParkingDB();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 3
0
 // [Authorize(Roles = "admin")]
 public ActionResult CreateDB()
 {
     BLLGetCSV bllgetcsv = new BLLGetCSV();
     bllgetcsv.ImportCSV();
     return View("Index");
 }