using NUnit.Framework; using WD7UVN_HFT_2023241.Models; using WD7UVN_HFT_2023241.Logic; using WD7UVN_HFT_2023241.Repository; using System.Collections.Generic; using System.Linq; namespace WD7UVN_HFT_2023241.Test { public class CreateTests { LogicServices logic; [SetUp] public void Setup() { logic = new LogicServices(new CRUD()); Database.Context = new CompanyDbContext(); } [Test] public void CreateCustomerTest() { var testData = logic.CRUDOperations.ReadAllCustomers(); List tmp = new List(testData); Customer s = new Customer() { ID = 10, NAME = "Testing Hungary Kft." }; tmp.Add(s); testData.Concat(tmp.AsQueryable()); logic.CRUDOperations.CreateCustomer(s); Assert.That(logic.CRUDOperations.ReadAllCustomers() == testData); } [Test] public void CreateEmployeeTest() { var testData = logic.CRUDOperations.ReadAllEmployees(); List tmp = new List(testData); Employee s = new Employee() { ID = 10, NAME = "Teszt Vilmos" }; tmp.Add(s); testData.Concat(tmp.AsQueryable()); logic.CRUDOperations.CreateEmployee(s); Assert.That(logic.CRUDOperations.ReadAllEmployees() == testData); } [Test] public void CreateServiceTest() { var testData = logic.CRUDOperations.ReadAllServices(); List tmp = new List(testData); Service s = new Service() { ID = 10, NAME = "System testing" }; tmp.Add(s); testData.Concat(tmp.AsQueryable()); logic.CRUDOperations.CreateService(s); Assert.That(logic.CRUDOperations.ReadAllServices() == testData); } [Test] public void CreateMaintainerTeamTest() { var testData = logic.CRUDOperations.ReadAllMaintainerTeams(); List tmp = new List(testData); MaintainerTeam s = new MaintainerTeam() { ID = 10, NAME = "Tesztelő csapat" }; tmp.Add(s); testData.Concat(tmp.AsQueryable()); logic.CRUDOperations.CreateMaintainerTeam(s); Assert.That(logic.CRUDOperations.ReadAllMaintainerTeams() == testData); } } }