// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.12 // ignore_for_file: unused_element, unused_import // ignore_for_file: always_put_required_named_parameters_first // ignore_for_file: constant_identifier_names // ignore_for_file: lines_longer_than_80_chars import 'package:openapi/api.dart'; import 'package:test/test.dart'; /// tests for ActionsCapabilitiesApi void main() { // final instance = ActionsCapabilitiesApi(); group('tests for ActionsCapabilitiesApi', () { // List actions // // Returns a collection of actions. The client can choose to filter the actions similar to how work packages are filtered. In addition to the provided filters, the server will reduce the result set to only contain actions, for which the requesting client has sufficient permissions. // //Future listActions({ String filters, String sortBy }) async test('test listActions', () async { // TODO }); // List capabilities // // Returns a collection of actions assigned to a principal in a context. The client can choose to filter the actions similar to how work packages are filtered. In addition to the provided filters, the server will reduce the result set to only contain actions, for which the requesting client has sufficient permissions // //Future listCapabilities({ String filters, String sortBy }) async test('test listCapabilities', () async { // TODO }); // View action // // Returns an individual action. // //Future viewAction(String id) async test('test viewAction', () async { // TODO }); // View capabilities // // // //Future viewCapabilities(String id) async test('test viewCapabilities', () async { // TODO }); // View global context // // Returns the global capability context. This context is necessary to consistently link to a context even if the context is not a project. // //Future viewGlobalContext() async test('test viewGlobalContext', () async { // TODO }); }); }