@@ -240,6 +240,86 @@ public function getFiles(): array
240240 'destination ' => '/lib/services/{{service.name | caseDash}}.dart ' ,
241241 'template ' => 'flutter/lib/services/service.dart.twig ' ,
242242 ],
243+ [
244+ 'scope ' => 'service ' ,
245+ 'destination ' => '/test/services/{{service.name | caseDash}}_test.dart ' ,
246+ 'template ' => 'dart/test/services/service_test.dart.twig ' ,
247+ ],
248+ [
249+ 'scope ' => 'definition ' ,
250+ 'destination ' => '/test/src/models/{{definition.name | caseSnake }}_test.dart ' ,
251+ 'template ' => 'dart/test/src/models/model_test.dart.twig ' ,
252+ ],
253+ [
254+ 'scope ' => 'default ' ,
255+ 'destination ' => '/test/id_test.dart ' ,
256+ 'template ' => 'dart/test/id_test.dart.twig ' ,
257+ ],
258+ [
259+ 'scope ' => 'default ' ,
260+ 'destination ' => '/test/permission_test.dart ' ,
261+ 'template ' => 'dart/test/permission_test.dart.twig ' ,
262+ ],
263+ [
264+ 'scope ' => 'default ' ,
265+ 'destination ' => '/test/query_test.dart ' ,
266+ 'template ' => 'dart/test/query_test.dart.twig ' ,
267+ ],
268+ [
269+ 'scope ' => 'default ' ,
270+ 'destination ' => '/test/role_test.dart ' ,
271+ 'template ' => 'dart/test/role_test.dart.twig ' ,
272+ ],
273+ [
274+ 'scope ' => 'default ' ,
275+ 'destination ' => '/test/src/cookie_manager_test.dart ' ,
276+ 'template ' => 'flutter/test/src/cookie_manager_test.dart.twig ' ,
277+ ],
278+ [
279+ 'scope ' => 'default ' ,
280+ 'destination ' => '/test/src/interceptor_test.dart ' ,
281+ 'template ' => 'flutter/test/src/interceptor_test.dart.twig ' ,
282+ ],
283+ [
284+ 'scope ' => 'default ' ,
285+ 'destination ' => '/test/src/realtime_response_test.dart ' ,
286+ 'template ' => 'flutter/test/src/realtime_response_test.dart.twig ' ,
287+ ],
288+ [
289+ 'scope ' => 'default ' ,
290+ 'destination ' => '/test/src/realtime_response_connected_test.dart ' ,
291+ 'template ' => 'flutter/test/src/realtime_response_connected_test.dart.twig ' ,
292+ ],
293+ [
294+ 'scope ' => 'default ' ,
295+ 'destination ' => '/test/src/realtime_subscription_test.dart ' ,
296+ 'template ' => 'flutter/test/src/realtime_subscription_test.dart.twig ' ,
297+ ],
298+ [
299+ 'scope ' => 'default ' ,
300+ 'destination ' => '/test/src/enums_test.dart ' ,
301+ 'template ' => 'dart/test/src/enums_test.dart.twig ' ,
302+ ],
303+ [
304+ 'scope ' => 'default ' ,
305+ 'destination ' => '/test/src/upload_progress_test.dart ' ,
306+ 'template ' => 'dart/test/src/upload_progress_test.dart.twig ' ,
307+ ],
308+ [
309+ 'scope ' => 'default ' ,
310+ 'destination ' => '/test/src/input_file_test.dart ' ,
311+ 'template ' => 'dart/test/src/input_file_test.dart.twig ' ,
312+ ],
313+ [
314+ 'scope ' => 'default ' ,
315+ 'destination ' => '/test/src/exception_test.dart ' ,
316+ 'template ' => 'dart/test/src/exception_test.dart.twig ' ,
317+ ],
318+ [
319+ 'scope ' => 'default ' ,
320+ 'destination ' => '/test/src/response_test.dart ' ,
321+ 'template ' => 'dart/test/src/response_test.dart.twig ' ,
322+ ],
243323 [
244324 'scope ' => 'method ' ,
245325 'destination ' => 'docs/examples/{{service.name | caseLower}}/{{method.name | caseDash}}.md ' ,
0 commit comments