You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2016/05/25 15:50:35 UTC

svn commit: r1745512 - /pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java

Author: tilman
Date: Wed May 25 15:50:35 2016
New Revision: 1745512

URL: http://svn.apache.org/viewvc?rev=1745512&view=rev
Log:
PDFBOX-3362: add test

Added:
    pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java   (with props)

Added: pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java?rev=1745512&view=auto
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java (added)
+++ pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java Wed May 25 15:50:35 2016
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2016 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ */
+package org.apache.pdfbox.pdmodel;
+
+import java.util.EnumSet;
+import java.util.HashSet;
+import java.util.Set;
+import static org.junit.Assert.assertEquals;
+import org.junit.Test;
+
+/**
+ * @author Tilman Hausherr
+ */
+public class PageLayoutTest
+{
+    /**
+     * Test for completeness (PDFBOX-3362).
+     */
+    @Test
+    public void testValues()
+    {
+        Set<PageLayout> pageLayoutSet = EnumSet.noneOf(PageLayout.class);
+        Set<String> stringSet = new HashSet<String>();
+        for (PageLayout pl : PageLayout.values())
+        {
+            String s = pl.stringValue();
+            stringSet.add(s);
+            pageLayoutSet.add(PageLayout.fromString(s));
+        }
+        assertEquals(PageLayout.values().length, pageLayoutSet.size());
+        assertEquals(PageLayout.values().length, stringSet.size());
+    }
+}

Propchange: pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/PageLayoutTest.java
------------------------------------------------------------------------------
    svn:eol-style = native