/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * 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; * version 2.1 of the License. * * 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. */ package org.geotools.filter.v1_1.capabilities; import org.w3c.dom.Document; import javax.xml.namespace.QName; import org.opengis.filter.capability.GeometryOperand; import org.geotools.filter.v1_1.OGC; import org.geotools.xml.Binding; /** * Binding test case for http://www.opengis.net/ogc:GeometryOperandType. * * <p> * <pre> * <code> * <xsd:simpleType name="GeometryOperandType"> * <xsd:restriction base="xsd:QName"> * <xsd:enumeration value="gml:Envelope"/> * <xsd:enumeration value="gml:Point"/> * <xsd:enumeration value="gml:LineString"/> * <xsd:enumeration value="gml:Polygon"/> * <xsd:enumeration value="gml:ArcByCenterPoint"/> * <xsd:enumeration value="gml:CircleByCenterPoint"/> * <xsd:enumeration value="gml:Arc"/> * <xsd:enumeration value="gml:Circle"/> * <xsd:enumeration value="gml:ArcByBulge"/> * <xsd:enumeration value="gml:Bezier"/> * <xsd:enumeration value="gml:Clothoid"/> * <xsd:enumeration value="gml:CubicSpline"/> * <xsd:enumeration value="gml:Geodesic"/> * <xsd:enumeration value="gml:OffsetCurve"/> * <xsd:enumeration value="gml:Triangle"/> * <xsd:enumeration value="gml:PolyhedralSurface"/> * <xsd:enumeration value="gml:TriangulatedSurface"/> * <xsd:enumeration value="gml:Tin"/> * <xsd:enumeration value="gml:Solid"/> * </xsd:restriction> * </xsd:simpleType> * * </code> * </pre> * </p> * * @generated * * * @source $URL$ */ public class GeometryOperandTypeBindingTest extends OGCTestSupport { public void testType() { assertEquals(GeometryOperand.class, binding(OGC.GeometryOperandType).getType()); } public void testExecutionMode() { assertEquals(Binding.AFTER, binding(OGC.GeometryOperandType).getExecutionMode()); } public void testParse() throws Exception { FilterMockData.geometryOperand(document, document, "Envelope"); GeometryOperand operand = (GeometryOperand) parse(OGC.GeometryOperandType); assertEquals(GeometryOperand.Envelope, operand); } public void testEncode() throws Exception { Document dom = encode(GeometryOperand.Envelope, new QName(OGC.NAMESPACE, "GeometryOperand"), OGC.GeometryOperandType); assertEquals("gml:Envelope", dom.getDocumentElement().getFirstChild().getNodeValue()); } }