Skip to content

Commit

Permalink
Update HelloControllerTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
SentryMan committed Dec 16, 2024
1 parent db613ae commit 5ee2cb4
Showing 1 changed file with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
package org.example.web;

import io.avaje.http.client.HttpClient;
import io.avaje.http.client.HttpException;
import org.junit.jupiter.api.Test;

import java.net.http.HttpResponse;

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;

import java.net.http.HttpResponse;

import org.junit.jupiter.api.Test;

import io.avaje.http.api.ValidationException.Violation;
import io.avaje.http.client.HttpClient;
import io.avaje.http.client.HttpException;
import io.avaje.jsonb.Json.Import;

@Import(Violation.class)
class HelloControllerTest extends BaseWebTest {

final static HttpClient client = client();
Expand Down

0 comments on commit 5ee2cb4

Please sign in to comment.