No código
package br.com.alura.loja;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.WebTarget;
import org.junit.Test;
import junit.framework.Assert;
public class ClienteTest {
@Test
public void testaQueAConexaoComOServidorFunciona(){}
Client client = ClientBuilder.newClient();
WebTarget target = client.target("http://www.mocky.io");
String conteudo = target.path("/v2/52aaf5deee7ba8c70329fb7d").request().get(String.class);
Assert.
}
Não aparece opção nenhuma como assertEquals ou assertTrue. apenas o erro Multiple markers at this line
- Syntax error, insert ")" to complete MethodDeclaration
- Syntax error, insert "}" to complete ClassBody
- Syntax error, insert "Identifier (" to complete
MethodHeaderName
- Syntax error, insert ";" to complete MethodDeclaration
A Library do Junit4 foi adicionada ao projeto.