File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
src/test/java/org/scijava/util Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,12 @@ public void testBox() {
310310 }
311311 }
312312
313+ /** Tests {@link Types#unbox(Class)}. */
314+ @ Test
315+ public void testUnbox () {
316+ // TODO
317+ }
318+
313319 /** Tests {@link Types#nullValue(Class)}. */
314320 @ Test
315321 public void testNullValue () {
@@ -597,9 +603,28 @@ public void testEnumValueNonEnum() {
597603 Types .enumValue ("HOOYAH" , String .class );
598604 }
599605
606+ /** Tests {@link Types#parameterize(Class, Map)}. */
607+ @ Test
608+ public void testParameterizeMap () {
609+ // TODO
610+ }
611+
612+ /** Tests {@link Types#parameterize(Class, Type...)}. */
613+ @ Test
614+ public void testParameterizeTypes () {
615+ // TODO
616+ }
617+
618+ /** Tests {@link Types#parameterizeWithOwner(Type, Class, Type...)}. */
619+ @ Test
620+ public void testParameterizeWithOwner () {
621+ // TODO
622+ }
623+
600624 // -- Helper classes --
601625
602626 private static class Thing <T > {
627+
603628 @ SuppressWarnings ("unused" )
604629 private T thing ;
605630 }
You can’t perform that action at this time.
0 commit comments