summaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/ui/themes/ValoThemeTest.java
blob: 8941516b56bb44bb24298411a599eaf82b2e9f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.vaadin.ui.themes;

public class ValoThemeTest {
    /*
     * No runtime behavior to test. Just verifying that it's possible to create
     * a custom subclass for inheriting the constants from the built-in theme.
     */
    public static class CustomValoTheme extends ValoTheme {
        public static String MY_THEME_CONSTANT = "my theme constant";
    }
}