All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dart2.api_test.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{{>header}}
import 'package:{{{pubName}}}/api.dart';
import 'package:test/test.dart';

{{#operations}}

/// tests for {{{classname}}}
void main() {
  // final instance = {{{classname}}}();

  group('tests for {{{classname}}}', () {
    {{#operation}}
    {{#summary}}
    // {{{.}}}
    //
    {{/summary}}
    {{#notes}}
    // {{{.}}}
    //
    {{/notes}}
    //{{#returnType}}Future<{{{.}}}> {{/returnType}}{{^returnType}}Future {{/returnType}}{{{operationId}}}({{#allParams}}{{#required}}{{{dataType}}} {{{paramName}}}{{^-last}}, {{/-last}}{{/required}}{{/allParams}}{{#hasOptionalParams}}{ {{#allParams}}{{^required}}{{{dataType}}} {{{paramName}}}{{^-last}}, {{/-last}}{{/required}}{{/allParams}} }{{/hasOptionalParams}}) async
    test('test {{{operationId}}}', () async {
      // TODO
    });

    {{/operation}}
  });
}
{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy