Skip to content

Instantly share code, notes, and snippets.

@GuilhermeManzano
Created December 13, 2020 22:03
Show Gist options
  • Save GuilhermeManzano/7698c8ded540cb095999a9371a840566 to your computer and use it in GitHub Desktop.
Save GuilhermeManzano/7698c8ded540cb095999a9371a840566 to your computer and use it in GitHub Desktop.
import org.junit.Test;
import io.restaassured.RestAssured;
public class deveRetornarTarefas {
@Test
public void test() {
RestAssured.given().
.when().get(“http://localhost:8001/tasks-backend/todo””)
.then().statusCode(400)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment