@@ -88,23 +88,23 @@ private void internalTestSettingValue(AbstractStructuredType structured, Class<?
8888
8989 @ ParameterizedTest
9090 @ MethodSource ("initializeParameters" )
91- void testPropertyType (AbstractStructuredType structured , Class <? extends AbstractStructuredType > clz , String fieldName , Types type ) throws ReflectiveOperationException
91+ void testPropertyType (AbstractStructuredType structured , Class <? extends AbstractStructuredType > clz , String fieldName , Types type )
9292 {
93- internalTestPropertyType (structured , clz , fieldName , type );
93+ internalTestPropertyType (structured , fieldName , type );
9494 }
9595
9696 @ ParameterizedTest
9797 @ MethodSource ("initializeParameters" )
98- void testRandomPropertyType (AbstractStructuredType structured , Class <? extends AbstractStructuredType > clz , String fieldName , Types type ) throws ReflectiveOperationException
98+ void testRandomPropertyType (AbstractStructuredType structured , Class <? extends AbstractStructuredType > clz , String fieldName , Types type )
9999 {
100100 initializeSeed (new Random ());
101101 for (int i =0 ; i < RAND_LOOP_COUNT ;i ++)
102102 {
103- internalTestPropertyType (structured , clz , fieldName , type );
103+ internalTestPropertyType (structured , fieldName , type );
104104 }
105105 }
106106
107- private void internalTestPropertyType (AbstractStructuredType structured , Class <? extends AbstractStructuredType > clz , String fieldName , Types type ) throws ReflectiveOperationException
107+ private void internalTestPropertyType (AbstractStructuredType structured , String fieldName , Types type )
108108 {
109109 Object value = getJavaValue (type );
110110 structured .addSimpleProperty (fieldName , value );
0 commit comments