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

csharp.libraries.unityWebRequest.api_test.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>partial_header}}
using System;
using System.IO;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Reflection;
using NUnit.Framework;

using {{packageName}}.Client;
using {{packageName}}.{{apiPackage}};
{{#hasImport}}
// uncomment below to import models
//using {{packageName}}.{{modelPackage}};
{{/hasImport}}

namespace {{packageName}}.Test.Api
{
    /// 
    ///  Class for testing {{classname}}
    /// 
    /// 
    /// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
    /// Please update the test case below to test the API endpoint.
    /// 
    public class {{classname}}Tests : IDisposable
    {
        {{^nonPublicApi}}
        private {{classname}} instance;

        {{/nonPublicApi}}
        public {{classname}}Tests()
        {
            {{^nonPublicApi}}
            instance = new {{classname}}();
            {{/nonPublicApi}}
        }

        public void Dispose()
        {
            // Cleanup when everything is done.
        }

        /// 
        /// Test an instance of {{classname}}
        /// 
        [Test]
        public void {{operationId}}InstanceTest()
        {
            // TODO uncomment below to test 'IsType' {{classname}}
            //Assert.IsType<{{classname}}>(instance);
        }
        {{#operations}}
        {{#operation}}

        /// 
        /// Test {{operationId}}
        /// 
        [Test]
        public void {{operationId}}Test()
        {
            // TODO uncomment below to test the method and replace null with proper value
            {{#allParams}}
            //{{{dataType}}} {{paramName}} = null;
            {{/allParams}}
            //{{#returnType}}var response = {{/returnType}}instance.{{operationId}}({{#allParams}}{{paramName}}{{^-last}}, {{/-last}}{{/allParams}});
            {{#returnType}}
            //Assert.IsType<{{{.}}}>(response);
            {{/returnType}}
        }
        {{/operation}}
        {{/operations}}
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy