mirror of
https://github.com/google/nomulus
synced 2026-09-05 15:46:55 +00: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:
@@ -15,21 +15,16 @@
|
||||
package google.registry.ui.forms;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
import static google.registry.testing.JUnitBackports.assertThrows;
|
||||
|
||||
import com.google.common.testing.NullPointerTester;
|
||||
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 FormFieldException}. */
|
||||
@RunWith(JUnit4.class)
|
||||
public class FormFieldExceptionTest {
|
||||
|
||||
@Rule
|
||||
public ExpectedException thrown = ExpectedException.none();
|
||||
|
||||
@Test
|
||||
public void testGetFieldName_multiplePropagations_joinsUsingJsonNotation() throws Exception {
|
||||
assertThat(
|
||||
@@ -53,8 +48,9 @@ public class FormFieldExceptionTest {
|
||||
|
||||
@Test
|
||||
public void testGetFieldName_noPropagations_throwsIse() throws Exception {
|
||||
thrown.expect(IllegalStateException.class);
|
||||
new FormFieldException("This field is required.").getFieldName();
|
||||
assertThrows(
|
||||
IllegalStateException.class,
|
||||
() -> new FormFieldException("This field is required.").getFieldName());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user