package com.vaadin.tests.design; import java.io.ByteArrayInputStream; import org.junit.Test; import com.vaadin.ui.declarative.Design; /** * Parse mixed content with legacy and new prefixes (not a required feature but * works). */ public class ParseMixedLegacyAndNewPrefixTest { @Test public void parseMixedContent() { Design.read(new ByteArrayInputStream( "" .getBytes())); } }