diff options
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_javac_handler.vader | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/handler/test_javac_handler.vader b/test/handler/test_javac_handler.vader index 2c0723b8..d190ab78 100644 --- a/test/handler/test_javac_handler.vader +++ b/test/handler/test_javac_handler.vader @@ -27,6 +27,11 @@ Execute(The javac handler should handle cannot find symbol errors): \ 'text': 'warning: some warning', \ 'type': 'W', \ }, + \ { + \ 'lnum': 42, + \ 'text': 'error: cannot find symbol: bar()', + \ 'type': 'E', + \ }, \ ], \ ale_linters#java#javac#Handle(347, [ \ '/tmp/vLPr4Q5/33/foo.java:1: error: some error', @@ -41,5 +46,9 @@ Execute(The javac handler should handle cannot find symbol errors): \ ' symbol: class BadName2', \ ' location: class Bar', \ '/tmp/vLPr4Q5/33/foo.java:37: warning: some warning', - \ '4 errors', + \ '/tmp/vLPr4Q5/264/foo.java:42: error: cannot find symbol', + \ ' this.bar();', + \ ' ^', + \ ' symbol: method bar()', + \ '5 errors', \ ]) |