Exemplo n.º 1
0
        static void Main(string[] args)
        {
            List <string> listaOk = new List <string>
            {
                "nombre", "planeta"
            };


            MockRebelRepository repository = new MockRebelRepository();

            RegistrationService registrationService = new RegistrationService(repository);

            string result = registrationService.Register(listaOk);
        }
Exemplo n.º 2
0
 public RebelAppServiceTest()
 {
     repository          = new MockRebelRepository();
     registrationService = new RegistrationService(repository);
     rebelAppServices    = new RebelAppServices(registrationService);
 }