144145146147148149150151152153154
} } public void testThemes() { ColorTheme t = new ColorTheme("test"); t.addRange("dark blue", 0.5f); t.addRange("soft orange", 0.5f); ColorList cols = t.getColors(1000); for (ReadonlyTColor c : cols) { assertNotNull(c); }
145146147148149150151152153154155
} public void testThemes() { ColorTheme t = new ColorTheme("test"); t.addRange("dark blue", 0.5f); t.addRange("soft orange", 0.5f); ColorList cols = t.getColors(1000); for (ReadonlyTColor c : cols) { assertNotNull(c); } }