X-Git-Url: https://git.hcoop.net/clinton/mirror/jspi/.git/blobdiff_plain/1a55f01cf981bd9174172c279ad0fd786f7b9e0f..3ea135bb6f2d874cae958af400076d5faf9d7e26:/jspi/src/main/java/de/lohndirekt/print/attribute/IppAttributeNameTest.java diff --git a/jspi/src/main/java/de/lohndirekt/print/attribute/IppAttributeNameTest.java b/jspi/src/main/java/de/lohndirekt/print/attribute/IppAttributeNameTest.java new file mode 100644 index 0000000..a0d41c7 --- /dev/null +++ b/jspi/src/main/java/de/lohndirekt/print/attribute/IppAttributeNameTest.java @@ -0,0 +1,60 @@ +/** + * Copyright (C) 2003 lohndirekt.de + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package de.lohndirekt.print.attribute; + +import java.util.Locale; + +import junit.framework.TestCase; +import de.lohndirekt.print.attribute.ipp.UnknownAttribute; + +/** + * @author bpusch + * + * + */ +public class IppAttributeNameTest extends TestCase { + + /** + * Constructor for IppAttributeNameTest. + * @param name + */ + public IppAttributeNameTest(String name) { + super(name); + } + + + /* + * Test for IppAttributeName get(String) + */ + public void testGetString() { + IppAttributeName attributeName = IppAttributeName.get("attribute-does-not-exist"); + assertNotNull("IppAttributeName is null",attributeName); + assertEquals("IppAttributeName should be UNKNOWN_ATTRIBUTE", attributeName.getCategory(), new UnknownAttribute("x",Locale.getDefault()).getCategory()); + } + + /* + * Test for IppAttributeName get(Class) + */ + public void testGetClass() { + IppAttributeName attributeName = IppAttributeName.get(String.class); + assertNotNull("IppAttributeName is null",attributeName); + assertEquals("IppAttributeName should be UNKNOWN_ATTRIBUTE", attributeName.getCategory(), new UnknownAttribute("x",Locale.getDefault()).getCategory()); + } + +}