1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Adds a test case for parameter hints.

This commit is contained in:
Markus Schorn 2007-05-31 11:55:46 +00:00
parent 6410925da8
commit b70999dc02

View file

@ -158,4 +158,18 @@ public class ParameterHintTests extends AbstractContentAssistTest {
"pi(aClass a) int"
});
}
// class OtherClass {
// public:
// char getChar(int a, int b);
// };
//
// void foo() {
// OtherClass* oc;
// int i= (int) oc->getChar(
public void testMethodWithCast() throws Exception {
assertParameterHints(new String[] {
"getChar(int a,int b) char"
});
}
}