mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Get rid of custom ExceptionRule methods
The only remaining methods on ExceptionRule after this are methods that also exist on ExpectedException, which will allow us to, in the next CL, swap out the one for the other and then run the automated refactoring to turn it all into assertThrows/expectThrows. Note that there were some assertions about root causes that couldn't easily be turned into ExpectedException invocations, so I simply converted them directly to usages of assertThrows/expectThrows. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=178623431
This commit is contained in:
parent
68a26f5b6e
commit
b825a2b5a8
144 changed files with 1176 additions and 894 deletions
|
@ -80,7 +80,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_nonexistentParentRegistrar() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class, "Registrar FakeRegistrar not found");
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("Registrar FakeRegistrar not found");
|
||||
runCommandForced(
|
||||
"--registrar=FakeRegistrar",
|
||||
"--credit_id=" + creditId,
|
||||
|
@ -91,7 +92,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
@Test
|
||||
public void testFailure_nonexistentCreditId() throws Exception {
|
||||
long badId = creditId + 1;
|
||||
thrown.expect(NullPointerException.class, "ID " + badId);
|
||||
thrown.expect(NullPointerException.class);
|
||||
thrown.expectMessage("ID " + badId);
|
||||
runCommandForced(
|
||||
"--registrar=TheRegistrar",
|
||||
"--credit_id=" + badId,
|
||||
|
@ -101,7 +103,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_negativeBalance() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class, "negative");
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("negative");
|
||||
runCommandForced(
|
||||
"--registrar=TheRegistrar",
|
||||
"--credit_id=" + creditId,
|
||||
|
@ -111,7 +114,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_noRegistrar() throws Exception {
|
||||
thrown.expect(ParameterException.class, "--registrar");
|
||||
thrown.expect(ParameterException.class);
|
||||
thrown.expectMessage("--registrar");
|
||||
runCommandForced(
|
||||
"--credit_id=" + creditId,
|
||||
"--balance=\"USD 100\"",
|
||||
|
@ -120,7 +124,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_noCreditId() throws Exception {
|
||||
thrown.expect(ParameterException.class, "--credit_id");
|
||||
thrown.expect(ParameterException.class);
|
||||
thrown.expectMessage("--credit_id");
|
||||
runCommandForced(
|
||||
"--registrar=TheRegistrar",
|
||||
"--balance=\"USD 100\"",
|
||||
|
@ -129,7 +134,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_noBalance() throws Exception {
|
||||
thrown.expect(ParameterException.class, "--balance");
|
||||
thrown.expect(ParameterException.class);
|
||||
thrown.expectMessage("--balance");
|
||||
runCommandForced(
|
||||
"--registrar=TheRegistrar",
|
||||
"--credit_id=" + creditId,
|
||||
|
@ -138,7 +144,8 @@ public class CreateCreditBalanceCommandTest extends CommandTestCase<CreateCredit
|
|||
|
||||
@Test
|
||||
public void testFailure_noEffectiveTime() throws Exception {
|
||||
thrown.expect(ParameterException.class, "--effective_time");
|
||||
thrown.expect(ParameterException.class);
|
||||
thrown.expectMessage("--effective_time");
|
||||
runCommandForced(
|
||||
"--registrar=TheRegistrar",
|
||||
"--credit_id=" + creditId,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue