Examples of Ciudad


Examples of modelo.mapa.Ciudad

  }

  @Test
  public void viajarDeberiaCambiarCiudadActual() {

    Ciudad destino = this.turno.getDestinos().get(0);
    try {
      this.turno.viajar(destino, this.velocidad);
    } catch (LadronNoPlaneoEscapeException e) {
      Assert.fail();
    }
View Full Code Here

Examples of modelo.mapa.Ciudad

    // Ladron viaja de la ciudad0 a la ciudad1 al iniciarse el juego.
    Local local0 = this.turno.getLocales().get(0);
    Assert.assertEquals("Queria escalar el Monte Everest.", this.turno.interrogar(local0));

    // Viajo a pais por donde paso ladron
    Ciudad destinoConLadron = this.turno.getDestinos().get(0);

    try {
      this.turno.viajar(destinoConLadron, this.velocidad);
    } catch (LadronNoPlaneoEscapeException e) {
      Assert.fail();
View Full Code Here

Examples of modelo.mapa.Ciudad

  @Test
  public void interrogarEnCiudadSinLadronDeberiaDevolverRespuestaPorDefecto() {

    // Viajo a pais sin ladron
    Ciudad destinoSinLadron = this.turno.getDestinos().get(1);
    try {
      this.turno.viajar(destinoSinLadron, this.velocidad);
    } catch (LadronNoPlaneoEscapeException e) {
      Assert.fail();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.