Skip to content
Snippets Groups Projects
Select Git revision
  • 3ac8c3e7fdd5fa05b6b653d7cadce5b5853379b2
  • main default protected
  • Issue/3142-kpiGenerator
  • Hotfix/3115-userReportingEmpty2
  • Hotfix/3115-userReportingEmpty
  • dev protected
  • Issue/3043-DataStorageNrwResource
  • Issue/3011-maintenanceMode
  • Issue/2492-respOrg
  • Issue/2446-addingResponsibleOrganization
  • Issue/2982-kpiDataPub
  • Issue/2981-dataPubInDb
  • Issue/2881-messageController
  • test-linux-pipelines
  • Issue/2944-gdShenanigans
  • Issue/2672-fixSfbPidPointing
  • Issue/2769-migrateCron
  • Issue/2668-graphDeployer
  • Issue/2847-reporting
  • Issue/2627-addPidRecord
  • Issue/2432-publicationKpi
  • v1.9.10
  • v1.9.9
  • v1.9.8
  • v1.9.7
  • v1.9.6
  • v1.9.5
  • v1.9.4
  • v1.9.3
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.0
  • v1.7.0
  • v1.6.0
  • v1.5.0
  • v1.4.0
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
41 results

PaginationTests.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PaginationTests.cs 2.88 KiB
    /*
     * Coscine Web API (Internal Use Only)
     *
     * Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
     *
     * The version of the OpenAPI document: 2.0
     * Contact: servicedesk@itc.rwth-aachen.de
     * Generated by: https://github.com/openapitools/openapi-generator.git
     */
    
    
    using Xunit;
    
    using System;
    using System.Linq;
    using System.IO;
    using System.Collections.Generic;
    using Coscine.ApiClient.Model;
    using Coscine.ApiClient.Client;
    using System.Reflection;
    using Newtonsoft.Json;
    
    namespace Coscine.ApiClient.Test.Model
    {
        /// <summary>
        ///  Class for testing Pagination
        /// </summary>
        /// <remarks>
        /// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
        /// Please update the test case below to test the model.
        /// </remarks>
        public class PaginationTests : IDisposable
        {
            // TODO uncomment below to declare an instance variable for Pagination
            //private Pagination instance;
    
            public PaginationTests()
            {
                // TODO uncomment below to create an instance of Pagination
                //instance = new Pagination();
            }
    
            public void Dispose()
            {
                // Cleanup when everything is done.
            }
    
            /// <summary>
            /// Test an instance of Pagination
            /// </summary>
            [Fact]
            public void PaginationInstanceTest()
            {
                // TODO uncomment below to test "IsType" Pagination
                //Assert.IsType<Pagination>(instance);
            }
    
            /// <summary>
            /// Test the property 'CurrentPage'
            /// </summary>
            [Fact]
            public void CurrentPageTest()
            {
                // TODO unit test for the property 'CurrentPage'
            }
    
            /// <summary>
            /// Test the property 'TotalPages'
            /// </summary>
            [Fact]
            public void TotalPagesTest()
            {
                // TODO unit test for the property 'TotalPages'
            }
    
            /// <summary>
            /// Test the property 'PageSize'
            /// </summary>
            [Fact]
            public void PageSizeTest()
            {
                // TODO unit test for the property 'PageSize'
            }
    
            /// <summary>
            /// Test the property 'TotalCount'
            /// </summary>
            [Fact]
            public void TotalCountTest()
            {
                // TODO unit test for the property 'TotalCount'
            }
    
            /// <summary>
            /// Test the property 'HasPrevious'
            /// </summary>
            [Fact]
            public void HasPreviousTest()
            {
                // TODO unit test for the property 'HasPrevious'
            }
    
            /// <summary>
            /// Test the property 'HasNext'
            /// </summary>
            [Fact]
            public void HasNextTest()
            {
                // TODO unit test for the property 'HasNext'
            }
        }
    }