Remove unnecessary "throws" declarations

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=201058582
This commit is contained in:
mcilwain 2018-06-18 14:25:42 -07:00 committed by Ben McIlwain
parent a7256f5edd
commit 5d80f124ca
377 changed files with 2297 additions and 2373 deletions

View file

@ -161,30 +161,30 @@ public abstract class CommandTestCase<C extends Command> {
* Asserts whether standard out matches an expected string, allowing for differences in
* ImmutableObject hash codes (i.e. "(@1234567)").
*/
protected void assertStdoutForImmutableObjectIs(String expected) throws Exception {
protected void assertStdoutForImmutableObjectIs(String expected) {
assertThat(stripImmutableObjectHashCodes(getStdoutAsString()).trim())
.isEqualTo(stripImmutableObjectHashCodes(expected).trim());
}
protected void assertStdoutIs(String expected) throws Exception {
protected void assertStdoutIs(String expected) {
assertThat(getStdoutAsString()).isEqualTo(expected);
}
protected void assertInStdout(String... expected) throws Exception {
protected void assertInStdout(String... expected) {
String stdout = getStdoutAsString();
for (String line : expected) {
assertThat(stdout).contains(line);
}
}
protected void assertInStderr(String... expected) throws Exception {
protected void assertInStderr(String... expected) {
String stderror = new String(stderr.toByteArray(), UTF_8);
for (String line : expected) {
assertThat(stderror).contains(line);
}
}
protected void assertNotInStdout(String expected) throws Exception {
protected void assertNotInStdout(String expected) {
assertThat(getStdoutAsString()).doesNotContain(expected);
}