mirror of https://github.com/jwtk/jjwt.git
Added coverage test for JwtMap.
This commit is contained in:
parent
6401727b2a
commit
681a3fc0ba
|
@ -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() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue