-
Notifications
You must be signed in to change notification settings - Fork 771
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup Java: update signature help test
- Loading branch information
1 parent
ac86d63
commit 88ba001
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
15 changes: 12 additions & 3 deletions
15
ycmd/tests/java/testdata/extra_confs/simple_extra_conf_project/src/SignatureHelp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
import java.util.function.Function; | ||
|
||
public class SignatureHelp | ||
{ | ||
public SignatureHelp( String signature ) { | ||
this.test( "") | ||
this.test( "test", "t" ); | ||
this.test( 1, "2" ); | ||
char [] data = new char[10]; | ||
String.copyValueOf( data, 1, 2 ); | ||
this.unique( 10.0 ); | ||
String s = new String( data ); | ||
} | ||
|
||
public void test( String s, String s ) { | ||
public void test( String s, String s1 ) { | ||
String.copyValueOf( | ||
} | ||
public void test( int i, String s ) { | ||
SignatureHelp s = new SignatureHelp( | ||
} | ||
public void unique( double d ) {} | ||
} |