Skip to content

Commit 454aae7

Browse files
committed
Update GithubTest.java
1 parent 2ce27b4 commit 454aae7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/test-client/src/test/java/example/github/GithubTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414

1515
class GithubTest {
1616

17+
@Test
18+
void test_create() {
19+
final HttpClient client = HttpClient.builder().baseUrl("https://api.github.com").build();
20+
21+
final Simple simple = client.create(Simple.class);
22+
assertThat(simple).isNotNull();
23+
}
24+
1725
@Disabled
1826
@Test
1927
void test_with_jackson() {

0 commit comments

Comments
 (0)