mirror of
https://github.com/google/nomulus.git
synced 2025-05-16 01:17:14 +02:00
Automatically refactor more exception testing to use new JUnit rules
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=178911894
This commit is contained in:
parent
36ad38e5df
commit
7dc224627f
125 changed files with 1970 additions and 1982 deletions
|
@ -15,21 +15,16 @@
|
|||
package google.registry.xml;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
import static google.registry.testing.JUnitBackports.assertThrows;
|
||||
|
||||
import org.joda.time.LocalDate;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.rules.ExpectedException;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.JUnit4;
|
||||
|
||||
/** Unit tests for {@link DateAdapter}. */
|
||||
@RunWith(JUnit4.class)
|
||||
public class DateAdapterTest {
|
||||
|
||||
@Rule
|
||||
public final ExpectedException thrown = ExpectedException.none();
|
||||
|
||||
@Test
|
||||
public void testMarshal() {
|
||||
assertThat(new DateAdapter().marshal(
|
||||
|
@ -61,7 +56,8 @@ public class DateAdapterTest {
|
|||
|
||||
@Test
|
||||
public void testUnmarshalInvalid() {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
assertThat((new DateAdapter()).unmarshal("oh my goth")).isNull();
|
||||
assertThrows(
|
||||
IllegalArgumentException.class,
|
||||
() -> assertThat((new DateAdapter()).unmarshal("oh my goth")).isNull());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue