[Java][WebClient] allow sync requests (#11780)

This commit is contained in:
Oleh Kurpiak
2022-03-04 16:58:03 +02:00
committed by GitHub
parent 9bccd43c59
commit 2e0dc573b3
89 changed files with 325 additions and 3910 deletions

0
samples/client/petstore/java/webclient-nulable-arrays/gradlew vendored Executable file → Normal file
View File

View File

@@ -20,6 +20,8 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
@@ -58,4 +60,28 @@ public class ByteArrayObjectTest {
// TODO: test normalArray
}
/**
* Test the property 'nullableString'
*/
@Test
public void nullableStringTest() {
// TODO: test nullableString
}
/**
* Test the property 'stringField'
*/
@Test
public void stringFieldTest() {
// TODO: test stringField
}
/**
* Test the property 'intField'
*/
@Test
public void intFieldTest() {
// TODO: test intField
}
}