diff options
author | Maximilian Berger <maxberger@apache.org> | 2009-09-24 10:09:55 +0000 |
---|---|---|
committer | Maximilian Berger <maxberger@apache.org> | 2009-09-24 10:09:55 +0000 |
commit | 4e970b8a7dda134f2594f9d7f258af4a90ff7a64 (patch) | |
tree | 578ce53ae4d3b8ba4ba0f6bf3c86b16d23ea1792 /test/java/org/apache/fop/fonts | |
parent | a30e3c29fd55d4d1b70f386180a8e7936a9dd799 (diff) | |
download | xmlgraphics-fop-4e970b8a7dda134f2594f9d7f258af4a90ff7a64.tar.gz xmlgraphics-fop-4e970b8a7dda134f2594f9d7f258af4a90ff7a64.zip |
Added Testcase from Bug #47872 (thanks to alex kiel) and fixed it in FontLoader
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@818424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/java/org/apache/fop/fonts')
-rw-r--r-- | test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java b/test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java new file mode 100644 index 000000000..181fff448 --- /dev/null +++ b/test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java @@ -0,0 +1,52 @@ +/* + * 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.fonts; + +import java.io.File; + +import junit.framework.TestCase; + +/** + * + */ +public class DejaVuLGCSerifTest extends TestCase { + + private FontResolver fontResolver = FontManager.createMinimalFontResolver(); + private CustomFont font; + + /** + * sets up the testcase by loading the DejaVu Font. + * + * @throws Exception + * if the test fails. + */ + public void setUp() throws Exception { + File file = new File("test/resources/fonts/DejaVuLGCSerif.ttf"); + font = FontLoader.loadFont(file, "", true, EncodingMode.AUTO, + fontResolver); + } + + /** + * Simple test to see if font name was detected correctly. + */ + public void testFontName() { + assertEquals("DejaVu", font.getFontName()); + } +} |