Skip to content

Commit

Permalink
Improve dependency between JsonUtil and Configurator
Browse files Browse the repository at this point in the history
  • Loading branch information
sashirestela committed Jan 23, 2025
1 parent 06806d0 commit 6f83dfc
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package io.github.sashirestela.cleverclient.http;

import io.github.sashirestela.cleverclient.support.CleverClientException;
import io.github.sashirestela.cleverclient.test.TestSupport;
import io.github.sashirestela.cleverclient.test.TestSupport.SyncType;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import java.io.ByteArrayInputStream;
Expand Down Expand Up @@ -51,6 +53,11 @@ interface HttpProcessorTest {

void testShutdown();

@BeforeAll
static void setup() {
TestSupport.setupConfigurator();
}

@Test
default void shouldThownExceptionWhenCallingMethodReturnTypeIsUnsupported() {
var service = getHttpProcessor().createProxy(ITest.AsyncService.class);
Expand Down

0 comments on commit 6f83dfc

Please sign in to comment.