List of usage examples for org.springframework.boot.cli.command.init ProjectGenerationResponse getContent
byte[] getContent()
From source file:org.springframework.boot.cli.command.init.InitializrServiceTests.java
private ProjectGenerationResponse generateProject(ProjectGenerationRequest request, MockHttpProjectGenerationRequest mockRequest) throws Exception { mockSuccessfulProjectGeneration(mockRequest); ProjectGenerationResponse entity = this.invoker.generate(request); assertThat(entity.getContent()).as("wrong body content").isEqualTo(mockRequest.content); return entity; }