activity_api_test.dart 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // AUTO-GENERATED FILE, DO NOT MODIFY!
  3. //
  4. // @dart=2.12
  5. // ignore_for_file: unused_element, unused_import
  6. // ignore_for_file: always_put_required_named_parameters_first
  7. // ignore_for_file: constant_identifier_names
  8. // ignore_for_file: lines_longer_than_80_chars
  9. import 'package:openapi/api.dart';
  10. import 'package:test/test.dart';
  11. /// tests for ActivityApi
  12. void main() {
  13. // final instance = ActivityApi();
  14. group('tests for ActivityApi', () {
  15. //Future<ActivityResponseDto> createActivity(ActivityCreateDto activityCreateDto) async
  16. test('test createActivity', () async {
  17. // TODO
  18. });
  19. //Future deleteActivity(String id) async
  20. test('test deleteActivity', () async {
  21. // TODO
  22. });
  23. //Future<List<ActivityResponseDto>> getActivities(String albumId, { String assetId, ReactionType type, String userId }) async
  24. test('test getActivities', () async {
  25. // TODO
  26. });
  27. //Future<ActivityStatisticsResponseDto> getActivityStatistics(String albumId, { String assetId }) async
  28. test('test getActivityStatistics', () async {
  29. // TODO
  30. });
  31. });
  32. }