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() {
310
310
}
311
311
}
312
312
313
+ /** Tests {@link Types#unbox(Class)}. */
314
+ @ Test
315
+ public void testUnbox () {
316
+ // TODO
317
+ }
318
+
313
319
/** Tests {@link Types#nullValue(Class)}. */
314
320
@ Test
315
321
public void testNullValue () {
@@ -597,9 +603,28 @@ public void testEnumValueNonEnum() {
597
603
Types .enumValue ("HOOYAH" , String .class );
598
604
}
599
605
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
+
600
624
// -- Helper classes --
601
625
602
626
private static class Thing <T > {
627
+
603
628
@ SuppressWarnings ("unused" )
604
629
private T thing ;
605
630
}
You can’t perform that action at this time.
0 commit comments