blob: 91bce5d5bfe63d2c12d8401a9683e984adb9f156 (
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
30
|
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;
/**
* Just top level test case that contains all synchronizable components
*
* @author Vaadin Ltd
*/
public class ParseAllSupportedComponentsTest {
@Test
public void allComponentsAreParsed() throws FileNotFoundException {
DesignContext ctx = Design.read(
getClass().getResourceAsStream("all-components.html"), null);
assertThat(ctx, is(not(nullValue())));
assertThat(ctx.getRootComponent(), is(not(nullValue())));
}
}
|