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

csharp.api_test.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.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 RestSharp;
using NUnit.Framework;

using {{packageName}}.Client;
using {{packageName}}.{{apiPackage}};
{{#hasImport}}using {{packageName}}.{{modelPackage}};
{{/hasImport}}

namespace {{packageName}}.Test
{
    /// 
    ///  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.
    /// 
    [TestFixture]
    public class {{classname}}Tests
    {
        private {{classname}} instance;

        /// 
        /// Setup before each unit test
        /// 
        [SetUp]
        public void Init()
        {
            instance = new {{classname}}();
        }

        /// 
        /// Clean up after each unit test
        /// 
        [TearDown]
        public void Cleanup()
        {

        }

        /// 
        /// Test an instance of {{classname}}
        /// 
        [Test]
        public void {{operationId}}InstanceTest()
        {
            // TODO uncomment below to test 'IsInstanceOfType' {{classname}}
            //Assert.IsInstanceOfType(typeof({{classname}}), instance, "instance is a {{classname}}");
        }

        {{#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}}{{#hasMore}}, {{/hasMore}}{{/allParams}});
            {{#returnType}}//Assert.IsInstanceOf<{{{returnType}}}> (response, "response is {{{returnType}}}");{{/returnType}}
        }
        {{/operation}}{{/operations}}
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy