blob: 536ca057e4a671022f15aab5c184465197ba1a62 (
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
31
32
33
34
|
package com.vaadin.v7.ui;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import com.vaadin.v7.data.util.ObjectProperty;
public class RichTextAreaTest {
@Test
public void initiallyEmpty() {
RichTextArea tf = new RichTextArea();
assertTrue(tf.isEmpty());
}
@Test
public void emptyAfterClearUsingPDS() {
RichTextArea tf = new RichTextArea(new ObjectProperty<String>("foo"));
assertFalse(tf.isEmpty());
tf.clear();
assertTrue(tf.isEmpty());
}
@Test
public void emptyAfterClear() {
RichTextArea tf = new RichTextArea();
tf.setValue("foobar");
assertFalse(tf.isEmpty());
tf.clear();
assertTrue(tf.isEmpty());
}
}
|