Examples of Tune


Examples of rocks.xmpp.extensions.tune.model.Tune

                "          <source>Yessongs</source>\n" +
                "          <title>Heart of the Sunrise</title>\n" +
                "          <track>3</track>\n" +
                "          <uri>http://www.yesworld.com/lyrics/Fragile.html#9</uri>\n" +
                "        </tune>\n";
        Tune tune = unmarshal(xml, Tune.class);
        Assert.assertNotNull(tune);
        Assert.assertEquals(tune.getArtist(), "Yes");
        Assert.assertEquals(tune.getLength(), Integer.valueOf(686));
        Assert.assertEquals(tune.getRating(), Integer.valueOf(8));
        Assert.assertEquals(tune.getSource(), "Yessongs");
        Assert.assertEquals(tune.getTitle(), "Heart of the Sunrise");
        Assert.assertEquals(tune.getTrack(), "3");
        Assert.assertEquals(tune.getUri(), URI.create("http://www.yesworld.com/lyrics/Fragile.html#9"));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.