| Summary: | Adding KeyListener to Text breaks clustering | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Linuxhippy <linuxhippy> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | ivan |
| Version: | 3.4 | ||
| Target Milestone: | 3.5 | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| See Also: | https://git.eclipse.org/r/#/c/114708/ | ||
| Whiteboard: | |||
|
Description
Linuxhippy
Clemens, the JUnit test is green for me event without your modification:
---
@Test
public void testIsSerializable_withKeyListener() throws Exception {
text.setText( "foo" );
text.addKeyListener( mock( KeyListener.class ) );
Text deserializedText = serializeAndDeserialize( text );
assertEquals( text.getText(), deserializedText.getText() );
}
----
Could you provide a test case that demonstrates the problem?
... nevermind... I created a test for it. Gerrit change updated with a test case. |