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

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

Introduction

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

Prototype

JsonFieldType BOOLEAN

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

Click Source Link

Document

A boolean value.

Usage

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

@Test
public void booleanField() throws IOException {
    assertFieldType(JsonFieldType.BOOLEAN, "true");
}