public void GetAll_AllCompanies_RetrievesAllCompanies()
        {
            // Arrange
            GaboContext        gaboContext       = new GaboContext();
            ICompanyRepository companyRepository = new CompanyRepository(gaboContext);

            // Act
            var companies = companyRepository.GetAll();

            // Assert
            Assert.IsTrue(companies.Count > 0);
        }
        public void Insert_NewCompany_InsertsSuccessfully()
        {
            // Arrange
            GaboContext        gaboContext       = new GaboContext();
            ICompanyRepository companyRepository = new CompanyRepository(gaboContext);
            Company            newCompany        = new Company()
            {
                Name = "Gabo Enterprise",
                City = "Medellín",
                Nit  = 123
            };

            // Act
            var beforeNumberOfCompanies = companyRepository.GetAll().Count;

            companyRepository.Insert(newCompany);
            var afterNumberOfCompanies = companyRepository.GetAll().Count;

            // Assert
            Assert.AreEqual(beforeNumberOfCompanies + 1, afterNumberOfCompanies);
        }
Пример #3
0
 public CompanyRepository(GaboContext gaboContext)
 {
     _gaboContext = gaboContext;
 }
Пример #4
0
 public EmployeeRepository(GaboContext gaboContext)
 {
     _gaboContext = gaboContext;
 }