protected override void Given()
            {
                var transporteFake = new TransporteFake();

                _sut = new CentroLogisticaBuilder()
                       .WithTipoDeEnvio(TipoDeEnvio)
                       .WithTransporteCreado(transporteFake)
                       .Build();

                _expectedResult = MensajeCentroLogistica;
            }
Example #2
0
 private static void HacerEntrega(CentroLogistica centroLogistica)
 {
     System.Console.WriteLine(centroLogistica.EnviarPaquete());
 }
Example #3
0
 protected override void When()
 {
     _sut = new CentroLogisticaBuilder().Build();
 }