public PersonControllerTests()
        {
            _log = new Mock <ILogger <PersonController> >();

            _personController = new PersonController(TesteBase.GetInstance().serviceProvider.GetService <IExamplePersonServices>(), _log.Object);

            _examplePerson = new ExamplePerson();
        }
Ejemplo n.º 2
0
 public static TesteBase GetInstance()
 {
     return(_testeBase ?? (_testeBase = new TesteBase()));
 }