diff options
author | Glenn Adams <gadams@apache.org> | 2012-05-27 17:39:49 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2012-05-27 17:39:49 +0000 |
commit | 72ba7e572dccdb5ab1930ed9f20c9db7f720ae50 (patch) | |
tree | 853e91b010434e5c92508b705437ef9bf5141777 /test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java | |
parent | 47789800746b09c46b7369d9d8122b40531494e0 (diff) | |
download | xmlgraphics-fop-72ba7e572dccdb5ab1930ed9f20c9db7f720ae50.tar.gz xmlgraphics-fop-72ba7e572dccdb5ab1930ed9f20c9db7f720ae50.zip |
Add extension to place code just before PostScript %PageTrailer. Submitted by Luis Bernardo.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1343072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java')
-rw-r--r-- | test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java b/test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java new file mode 100644 index 000000000..3f1088fe1 --- /dev/null +++ b/test/java/org/apache/fop/render/ps/PSRenderingUtilTestCase.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* $Id$ */ + +package org.apache.fop.render.ps; + +import java.io.IOException; + +import org.junit.Test; + +import org.apache.xmlgraphics.ps.PSGenerator; + +import org.apache.fop.render.ps.extensions.PSPageTrailerCodeBefore; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; + +public class PSRenderingUtilTestCase { + + private final String content = "<< /MyEntry 0 >> command"; + private final PSPageTrailerCodeBefore ptcb = new PSPageTrailerCodeBefore(content); + private final PSGenerator gen = mock(PSGenerator.class); + + @Test + public void testWriteEnclosedExtensionAttachment() throws IOException { + PSRenderingUtil.writeEnclosedExtensionAttachment(gen, ptcb); + verify(gen).writeln(content); + } + +} |