@@ -92,20 +92,25 @@ def test_kwarg_search(module, prefix):
9292
9393@pytest .mark .parametrize (
9494 "function, nsssys, ntfsys, moreargs, kwargs" ,
95- [(control .dlqe , 1 , 0 , ([[1 ]], [[1 ]]), {}),
95+ [(control .append , 2 , 0 , (), {}),
96+ (control .dlqe , 1 , 0 , ([[1 ]], [[1 ]]), {}),
9697 (control .dlqr , 1 , 0 , ([[1 , 0 ], [0 , 1 ]], [[1 ]]), {}),
9798 (control .drss , 0 , 0 , (2 , 1 , 1 ), {}),
99+ (control .feedback , 2 , 0 , (), {}),
98100 (control .flatsys .flatsys , 1 , 0 , (), {}),
99101 (control .input_output_response , 1 , 0 , ([0 , 1 , 2 ], [1 , 1 , 1 ]), {}),
100102 (control .lqe , 1 , 0 , ([[1 ]], [[1 ]]), {}),
101103 (control .lqr , 1 , 0 , ([[1 , 0 ], [0 , 1 ]], [[1 ]]), {}),
102104 (control .linearize , 1 , 0 , (0 , 0 ), {}),
105+ (control .negate , 1 , 0 , (), {}),
103106 (control .nlsys , 0 , 0 , (lambda t , x , u , params : np .array ([0 ]),), {}),
107+ (control .parallel , 2 , 0 , (), {}),
104108 (control .pzmap , 1 , 0 , (), {}),
105109 (control .rlocus , 0 , 1 , (), {}),
106110 (control .root_locus , 0 , 1 , (), {}),
107111 (control .root_locus_plot , 0 , 1 , (), {}),
108112 (control .rss , 0 , 0 , (2 , 1 , 1 ), {}),
113+ (control .series , 2 , 0 , (), {}),
109114 (control .set_defaults , 0 , 0 , ('control' ,), {'default_dt' : True }),
110115 (control .ss , 0 , 0 , (0 , 0 , 0 , 0 ), {'dt' : 1 }),
111116 (control .ss2io , 1 , 0 , (), {}),
@@ -122,6 +127,7 @@ def test_kwarg_search(module, prefix):
122127 (control .LTI , 0 , 0 , (),
123128 {'inputs' : 1 , 'outputs' : 1 , 'states' : 1 }),
124129 (control .flatsys .LinearFlatSystem , 1 , 0 , (), {}),
130+ (control .InputOutputSystem .update_names , 1 , 0 , (), {}),
125131 (control .NonlinearIOSystem .linearize , 1 , 0 , (0 , 0 ), {}),
126132 (control .StateSpace .sample , 1 , 0 , (0.1 ,), {}),
127133 (control .StateSpace , 0 , 0 ,
@@ -232,6 +238,7 @@ def test_response_plot_kwargs(data_fcn, plot_fcn, mimo):
232238#
233239
234240kwarg_unittest = {
241+ 'append' : test_unrecognized_kwargs ,
235242 'bode' : test_response_plot_kwargs ,
236243 'bode_plot' : test_response_plot_kwargs ,
237244 'create_estimator_iosystem' : stochsys_test .test_estimator_errors ,
@@ -242,6 +249,7 @@ def test_response_plot_kwargs(data_fcn, plot_fcn, mimo):
242249 'dlqe' : test_unrecognized_kwargs ,
243250 'dlqr' : test_unrecognized_kwargs ,
244251 'drss' : test_unrecognized_kwargs ,
252+ 'feedback' : test_unrecognized_kwargs ,
245253 'flatsys.flatsys' : test_unrecognized_kwargs ,
246254 'frd' : frd_test .TestFRD .test_unrecognized_keyword ,
247255 'gangof4' : test_matplotlib_kwargs ,
@@ -252,19 +260,22 @@ def test_response_plot_kwargs(data_fcn, plot_fcn, mimo):
252260 'linearize' : test_unrecognized_kwargs ,
253261 'lqe' : test_unrecognized_kwargs ,
254262 'lqr' : test_unrecognized_kwargs ,
263+ 'negate' : test_unrecognized_kwargs ,
255264 'nichols_plot' : test_matplotlib_kwargs ,
256265 'nichols' : test_matplotlib_kwargs ,
257266 'nlsys' : test_unrecognized_kwargs ,
258267 'nyquist' : test_matplotlib_kwargs ,
259268 'nyquist_response' : test_response_plot_kwargs ,
260269 'nyquist_plot' : test_matplotlib_kwargs ,
261270 'phase_plane_plot' : test_matplotlib_kwargs ,
271+ 'parallel' : test_unrecognized_kwargs ,
262272 'pole_zero_plot' : test_unrecognized_kwargs ,
263273 'pzmap' : test_unrecognized_kwargs ,
264274 'rlocus' : test_unrecognized_kwargs ,
265275 'root_locus' : test_unrecognized_kwargs ,
266276 'root_locus_plot' : test_unrecognized_kwargs ,
267277 'rss' : test_unrecognized_kwargs ,
278+ 'series' : test_unrecognized_kwargs ,
268279 'set_defaults' : test_unrecognized_kwargs ,
269280 'singular_values_plot' : test_matplotlib_kwargs ,
270281 'ss' : test_unrecognized_kwargs ,
@@ -292,6 +303,7 @@ def test_response_plot_kwargs(data_fcn, plot_fcn, mimo):
292303 'DescribingFunctionResponse.plot' :
293304 descfcn_test .test_describing_function_exceptions ,
294305 'InputOutputSystem.__init__' : test_unrecognized_kwargs ,
306+ 'InputOutputSystem.update_names' : test_unrecognized_kwargs ,
295307 'LTI.__init__' : test_unrecognized_kwargs ,
296308 'flatsys.LinearFlatSystem.__init__' : test_unrecognized_kwargs ,
297309 'NonlinearIOSystem.linearize' : test_unrecognized_kwargs ,
0 commit comments