Package com.sonyericsson.hudson.plugins.metadata.model

Examples of com.sonyericsson.hudson.plugins.metadata.model.TimeDetails


     * Tests that the compareTo method of DateMetadataValue works as it should.
     * @throws Exception if so.
     */
    @Test
    public void testCompare() throws Exception {
        TimeDetails details = new TimeDetails(05, 06, 07);
        DateMetadataValue value = new DateMetadataValue("name", "description",
                2012, 11, 11, details, false);
        DateMetadataValue sameValue = value.clone();
        assertEquals(0, value.compareTo(sameValue));
        DateMetadataValue largerValue = new DateMetadataValue("name", "description",
View Full Code Here

TOP

Related Classes of com.sonyericsson.hudson.plugins.metadata.model.TimeDetails

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.