Beispiel #1
0
        public void Should_Return_True(string cpf, int id)
        {
            var company  = _fake.GetCompanyFake();
            var employee = _fake.GetEmployeeFake_With_Params(cpf, id);
            var result   = company.ValidateEmployeeToCompany(employee);

            Assert.True(result);
        }
Beispiel #2
0
        public void Should_Return_True(string cpf, int id)
        {
            var employeePosition = _fake.GetEmployeePositionFake();
            var employee         = _fake.GetEmployeeFake_With_Params(cpf, id);
            var result           = employeePosition.ValidateEmployyeToPosition(employee);

            Assert.True(result);
        }