Added coverage test for JwtMap.

This commit is contained in:
Micah Silverman 2015-09-23 17:20:02 -04:00
parent 6401727b2a
commit 681a3fc0ba
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ import static org.junit.Assert.*
class JwtMapTest {
@Test
void testToDateFromNull() {
Date actual = JwtMap.toDate(null, 'foo')
assertNull actual
}
@Test
void testToDateFromDate() {