From aa3e250ab6ec421cd0fbadadc0d76578ee73ca2a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 23 Feb 2014 00:24:24 +0100 Subject: [PATCH] @Ignore PrintingResultHandlerTests --- .../PrintingResultHandlerTests.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerTests.java b/spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerTests.java index 8da1db2e4cb..775185af74a 100644 --- a/spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerTests.java +++ b/spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,24 +16,29 @@ package org.springframework.test.web.servlet.samples.standalone.resulthandlers; +import org.junit.Ignore; import org.junit.Test; + import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.*; +import static org.springframework.test.web.servlet.setup.MockMvcBuilders.*; + /** * Print debugging information about the executed request and response to System.out. * * @author Rossen Stoyanchev + * @author Sam Brannen */ +@Ignore("Not intended to be executed with the build. Comment out this line to inspect the output manually.") public class PrintingResultHandlerTests { @Test public void testPrint() throws Exception { - - // Not testing anything, uncomment to see the output - - // standaloneSetup(new SimpleController()).build().perform(get("/")).andDo(print()); + standaloneSetup(new SimpleController()).build().perform(get("/")).andDo(print()); }