Package com.github.eclipsecolortheme

Examples of com.github.eclipsecolortheme.Color


public class ColorTest {
    private Color color;

    @Before
    public void setUp() {
        color = new Color("#FFAA00");
    }
View Full Code Here


        assertThat(setting.isUnderlineEnabled(), nullValue());
    }

    @Test
    public void getColor() {
        Color color = setting.getColor();
        assertThat(color, notNullValue());
        assertThat(color.asHex(), is("#00FFAA"));
    }
View Full Code Here

TOP

Related Classes of com.github.eclipsecolortheme.Color

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.