Example usage for org.springframework.restdocs.payload JsonFieldType ARRAY

List of usage examples for org.springframework.restdocs.payload JsonFieldType ARRAY

Introduction

In this page you can find the example usage for org.springframework.restdocs.payload JsonFieldType ARRAY.

Prototype

JsonFieldType ARRAY

To view the source code for org.springframework.restdocs.payload JsonFieldType ARRAY.

Click Source Link

Document

An array.

Usage

From source file:org.springframework.restdocs.payload.JsonFieldTypeResolverTests.java

@Test
public void arrayField() throws IOException {
    assertFieldType(JsonFieldType.ARRAY, "[]");
}