JasperReportsMultiFormatViewTests does not check for CUSTOM_COMPILATION anymore
Issue: SPR-10423
This commit is contained in:
		
							parent
							
								
									95c2e0a996
								
							
						
					
					
						commit
						0ef80d3579
					
				| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
/*
 | 
			
		||||
 * Copyright 2002-2015 the original author or authors.
 | 
			
		||||
 * Copyright 2002-2016 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.
 | 
			
		||||
| 
						 | 
				
			
			@ -19,16 +19,11 @@ package org.springframework.web.servlet.view.jasperreports;
 | 
			
		|||
import java.util.HashMap;
 | 
			
		||||
import java.util.Map;
 | 
			
		||||
import java.util.Properties;
 | 
			
		||||
 | 
			
		||||
import javax.servlet.http.HttpServletResponse;
 | 
			
		||||
 | 
			
		||||
import net.sf.jasperreports.engine.JasperPrint;
 | 
			
		||||
 | 
			
		||||
import org.junit.Test;
 | 
			
		||||
 | 
			
		||||
import org.springframework.tests.Assume;
 | 
			
		||||
import org.springframework.tests.TestGroup;
 | 
			
		||||
 | 
			
		||||
import static org.junit.Assert.*;
 | 
			
		||||
import static org.junit.Assume.*;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -46,7 +41,6 @@ public class JasperReportsMultiFormatViewTests extends AbstractJasperReportsView
 | 
			
		|||
 | 
			
		||||
	@Test
 | 
			
		||||
	public void simpleHtmlRender() throws Exception {
 | 
			
		||||
		Assume.group(TestGroup.CUSTOM_COMPILATION);
 | 
			
		||||
		assumeTrue(canCompileReport);
 | 
			
		||||
 | 
			
		||||
		AbstractJasperReportsView view = getView(UNCOMPILED_REPORT);
 | 
			
		||||
| 
						 | 
				
			
			@ -62,7 +56,6 @@ public class JasperReportsMultiFormatViewTests extends AbstractJasperReportsView
 | 
			
		|||
	@Test
 | 
			
		||||
	@Override
 | 
			
		||||
	public void overrideContentDisposition() throws Exception {
 | 
			
		||||
		Assume.group(TestGroup.CUSTOM_COMPILATION);
 | 
			
		||||
		assumeTrue(canCompileReport);
 | 
			
		||||
 | 
			
		||||
		AbstractJasperReportsView view = getView(UNCOMPILED_REPORT);
 | 
			
		||||
| 
						 | 
				
			
			@ -85,7 +78,6 @@ public class JasperReportsMultiFormatViewTests extends AbstractJasperReportsView
 | 
			
		|||
 | 
			
		||||
	@Test
 | 
			
		||||
	public void exporterParametersAreCarriedAcross() throws Exception {
 | 
			
		||||
		Assume.group(TestGroup.CUSTOM_COMPILATION);
 | 
			
		||||
		assumeTrue(canCompileReport);
 | 
			
		||||
 | 
			
		||||
		JasperReportsMultiFormatView view = (JasperReportsMultiFormatView) getView(UNCOMPILED_REPORT);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue