All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tonivade.zeromock.junit4.UIOMockHttpServerRule Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
/*
 * Copyright (c) 2018-2020, Antonio Gabriel Muñoz Conejo 
 * Distributed under the terms of the MIT License
 */
package com.github.tonivade.zeromock.junit4;

import com.github.tonivade.purefun.effect.UIO_;

import static com.github.tonivade.zeromock.server.UIOMockHttpServer.sync;

public class UIOMockHttpServerRule extends AbstractMockServerRule {

  public UIOMockHttpServerRule() {
     this(0);
  }

  public UIOMockHttpServerRule(int port) {
    super(sync().port(port).build());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy