mirror of
https://github.com/google/nomulus.git
synced 2025-06-28 07:13:34 +02: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:
parent
52bb8a5773
commit
8f0f701ff7
9 changed files with 43 additions and 46 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue