< prev index next >

test/langtools/jdk/javadoc/tool/ToolProviderTest.java

Print this page
rev 48074 : 8189102: All tools should support -?, -h and --help
Reviewed-by: kvn, jjg, weijun, alanb, rfield, ksrini

*** 1,7 **** /* ! * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 67,77 **** @Test public void testOneStream() throws Exception { StringWriter sw = new StringWriter(); try (PrintWriter pw = new PrintWriter(sw)) { ! int rc = javadoc.run(pw, pw, "-help"); if (rc != 0) { error("unexpected exit code: " + rc); } } String out = sw.toString(); --- 67,77 ---- @Test public void testOneStream() throws Exception { StringWriter sw = new StringWriter(); try (PrintWriter pw = new PrintWriter(sw)) { ! int rc = javadoc.run(pw, pw, "--help"); if (rc != 0) { error("unexpected exit code: " + rc); } } String out = sw.toString();
*** 84,94 **** public void testTwoStreamsOut() throws Exception { StringWriter swOut = new StringWriter(); StringWriter swErr = new StringWriter(); try (PrintWriter pwOut = new PrintWriter(swOut); PrintWriter pwErr = new PrintWriter(swErr)) { ! int rc = javadoc.run(pwOut, pwErr, "-help"); if (rc != 0) { error("unexpected exit code: " + rc); } } String out = swOut.toString(); --- 84,94 ---- public void testTwoStreamsOut() throws Exception { StringWriter swOut = new StringWriter(); StringWriter swErr = new StringWriter(); try (PrintWriter pwOut = new PrintWriter(swOut); PrintWriter pwErr = new PrintWriter(swErr)) { ! int rc = javadoc.run(pwOut, pwErr, "--help"); if (rc != 0) { error("unexpected exit code: " + rc); } } String out = swOut.toString();
< prev index next >