-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileCollectionResponseTests.cs
More file actions
118 lines (104 loc) · 3.07 KB
/
FileCollectionResponseTests.cs
File metadata and controls
118 lines (104 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* The REST API for Oracle Essbase enables you to automate management of Essbase resources and operations. All requests and responses are communicated over secured HTTP.
*
* The version of the OpenAPI document: 1.0
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using Xunit;
using System;
using System.Linq;
using System.IO;
using System.Collections.Generic;
using EssSharp.Model;
using EssSharp.Client;
using System.Reflection;
using Newtonsoft.Json;
namespace EssSharp.Test.Model
{
/// <summary>
/// Class for testing FileCollectionResponse
/// </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 FileCollectionResponseTests : IDisposable
{
// TODO uncomment below to declare an instance variable for FileCollectionResponse
//private FileCollectionResponse instance;
public FileCollectionResponseTests()
{
// TODO uncomment below to create an instance of FileCollectionResponse
//instance = new FileCollectionResponse();
}
public void Dispose()
{
// Cleanup when everything is done.
}
/// <summary>
/// Test an instance of FileCollectionResponse
/// </summary>
[Fact]
public void FileCollectionResponseInstanceTest()
{
// TODO uncomment below to test "IsType" FileCollectionResponse
//Assert.IsType<FileCollectionResponse>(instance);
}
/// <summary>
/// Test the property 'Count'
/// </summary>
[Fact]
public void CountTest()
{
// TODO unit test for the property 'Count'
}
/// <summary>
/// Test the property 'Items'
/// </summary>
[Fact]
public void ItemsTest()
{
// TODO unit test for the property 'Items'
}
/// <summary>
/// Test the property 'TotalResults'
/// </summary>
[Fact]
public void TotalResultsTest()
{
// TODO unit test for the property 'TotalResults'
}
/// <summary>
/// Test the property 'HasMore'
/// </summary>
[Fact]
public void HasMoreTest()
{
// TODO unit test for the property 'HasMore'
}
/// <summary>
/// Test the property 'Limit'
/// </summary>
[Fact]
public void LimitTest()
{
// TODO unit test for the property 'Limit'
}
/// <summary>
/// Test the property 'Properties'
/// </summary>
[Fact]
public void PropertiesTest()
{
// TODO unit test for the property 'Properties'
}
/// <summary>
/// Test the property 'Offset'
/// </summary>
[Fact]
public void OffsetTest()
{
// TODO unit test for the property 'Offset'
}
}
}