package org.asynchttpclient; import static org.junit.Assert.*; import org.junit.Test; public class TestSimpleAsyncHttpClient { @Test public void testBuilderConstructor() { SimpleAsyncHttpClient.Builder builder = new SimpleAsyncHttpClient.Builder(); SimpleAsyncHttpClient client = builder.build(); assertNotNull(client); } }