mirror of
https://github.com/google/nomulus
synced 2026-09-08 09:07:11 +00:00
Standardize test methods to be prefixed with "test"
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=131176866
This commit is contained in:
@@ -50,13 +50,13 @@ public class DurationParameterTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void demonstrateThat_isoMissingP_notAllowed() throws Exception {
|
||||
public void testIsoMissingP_notAllowed() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
Period.parse("T36H");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void demonstrateThat_isoMissingPT_notAllowed() throws Exception {
|
||||
public void testIsoMissingPT_notAllowed() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
Period.parse("36H");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user