Package de.mindcrimeilab.xsanalyzer.xml.XmlSchemaAnnotation

Examples of de.mindcrimeilab.xsanalyzer.xml.XmlSchemaAnnotation.Type


    }

    @Test
    public void testHashCode() {
        final XmlSchemaAnnotation annotation1 = new XmlSchemaAnnotation();
        final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;
        final String content = "an annotation";

        annotation1.setType(type);
        annotation1.setContent(content);
View Full Code Here


    }


    @Test
    public void testGetContent() {
        final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;
        final String content = "an annotation";
        final XmlSchemaAnnotation annotation = new XmlSchemaAnnotation(type, content);
        assertEquals(content, annotation.getContent());
    }
View Full Code Here

        assertEquals(content, annotation.getContent());
    }

    @Test
    public void testGetType() {
        final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;
        final String content = "an annotation";
        final XmlSchemaAnnotation annotation = new XmlSchemaAnnotation(type, content);
        assertEquals(type, annotation.getType());
    }
View Full Code Here

    }

    @Test
    public void testSetType() {
        final XmlSchemaAnnotation annotation = new XmlSchemaAnnotation();
        final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;

        annotation.setType(type);
        assertEquals(type, annotation.getType());
    }
View Full Code Here

    }

    @Test
    public void testEqualsObject() {
        final XmlSchemaAnnotation annotation1 = new XmlSchemaAnnotation();
        final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;
        final String content = "an annotation";

        annotation1.setType(type);
        annotation1.setContent(content);
View Full Code Here

TOP

Related Classes of de.mindcrimeilab.xsanalyzer.xml.XmlSchemaAnnotation.Type

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.