2018-08-26 09:11:36 -04:00
|
|
|
|
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('java', 'javalsp')
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(The javalsp callback should return the correct default value):
|
2019-02-07 04:35:24 -05:00
|
|
|
AssertLinter 'java', ale#Escape('java') . ' -Xverify:none -m javacs/org.javacs.Main'
|
2018-08-26 09:11:36 -04:00
|
|
|
|
2018-12-05 07:27:02 -05:00
|
|
|
Execute(The javalsp java executable should be configurable):
|
|
|
|
let b:ale_java_javalsp_executable = '/bin/foobar'
|
|
|
|
|
2019-02-07 04:35:24 -05:00
|
|
|
AssertLinter '/bin/foobar', ale#Escape('/bin/foobar') . ' -Xverify:none -m javacs/org.javacs.Main'
|