blob: a336b004f8a05f5aa6ce3e1c0ceaba72b0d9934c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package com.vaadin.v7.tests.design;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.MatcherAssert.assertThat;
import java.io.FileNotFoundException;
import org.junit.Test;
import com.vaadin.ui.declarative.Design;
import com.vaadin.ui.declarative.DesignContext;
/**
* Test reading a design with all components using the legacy prefix.
*/
public class ParseLegacyPrefixTest {
@Test
public void allComponentsAreParsed() throws FileNotFoundException {
DesignContext ctx = Design.read(
getClass().getResourceAsStream("all-components-legacy.html"),
null);
assertThat(ctx, is(not(nullValue())));
assertThat(ctx.getRootComponent(), is(not(nullValue())));
}
}
|