Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Unit


     */

    @Test
    public void testHashCode()
    {
        final Unit unit1 = new Unit(2, "meters");
        final Unit unit2 = new Unit(2, "meters");
        final Unit unit3 = new Unit(3, "meters");
        final Unit unit4 = new Unit(2, "kilometers");
        assertThat(unit1.hashCode(), is(unit2.hashCode()));
        assertThat(unit1.hashCode(), not(unit3.hashCode()));
        assertThat(unit1.hashCode(), not(unit4.hashCode()));
    }
View Full Code Here


     */

    @Test
    public void testToString()
    {
        assertThat(new Unit(2, "meters").toString(), is("2.0 meters"));
    }
View Full Code Here

TOP

Related Classes of de.ailis.jollada.model.Unit

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.