Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Villiger2014-11-27 09:41:13 +0000
committerMatthias Villiger2014-11-27 09:41:13 +0000
commit38483b1f2b028e5c0232774a0a129788328ca5c2 (patch)
tree8dbff02e325cd7be9f832fc683bbc1595581e14b /org.eclipse.scout.sdk.test
parent202e177b55af7c2871b022ae11b9c02128ccbdd3 (diff)
downloadorg.eclipse.scout.sdk-38483b1f2b028e5c0232774a0a129788328ca5c2.tar.gz
org.eclipse.scout.sdk-38483b1f2b028e5c0232774a0a129788328ca5c2.tar.xz
org.eclipse.scout.sdk-38483b1f2b028e5c0232774a0a129788328ca5c2.zip
Method test fixed to reflect latest RT API changes.
Diffstat (limited to 'org.eclipse.scout.sdk.test')
-rw-r--r--org.eclipse.scout.sdk.test/src/org/eclipse/scout/sdk/internal/test/operation/jdt/method/MethodTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.scout.sdk.test/src/org/eclipse/scout/sdk/internal/test/operation/jdt/method/MethodTest.java b/org.eclipse.scout.sdk.test/src/org/eclipse/scout/sdk/internal/test/operation/jdt/method/MethodTest.java
index b35bd8168..928669adf 100644
--- a/org.eclipse.scout.sdk.test/src/org/eclipse/scout/sdk/internal/test/operation/jdt/method/MethodTest.java
+++ b/org.eclipse.scout.sdk.test/src/org/eclipse/scout/sdk/internal/test/operation/jdt/method/MethodTest.java
@@ -398,7 +398,7 @@ public class MethodTest extends AbstractScoutSdkTest {
IMethod execDecorateCell = SdkAssert.assertMethodExist(table, "execDecorateCell", new String[]{"QCell;", "QITableRow;", "QIColumn<*>;"});
SdkAssert.assertMethodReturnTypeSignature(execDecorateCell, "V");
SdkAssert.assertAnnotation(execDecorateCell, "java.lang.Override");
- IMethod execRowClick = SdkAssert.assertMethodExist(table, "execRowClick", new String[]{"QITableRow;"});
+ IMethod execRowClick = SdkAssert.assertMethodExist(table, "execRowClick", new String[]{"QITableRow;", "QMouseButton;"});
SdkAssert.assertMethodReturnTypeSignature(execRowClick, "V");
SdkAssert.assertAnnotation(execRowClick, "java.lang.Override");

Back to the top