-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateFilePartUploadResponseTests.cs
More file actions
100 lines (88 loc) · 2.73 KB
/
CreateFilePartUploadResponseTests.cs
File metadata and controls
100 lines (88 loc) · 2.73 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
/*
* 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 CreateFilePartUploadResponse
/// </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 CreateFilePartUploadResponseTests : IDisposable
{
// TODO uncomment below to declare an instance variable for CreateFilePartUploadResponse
//private CreateFilePartUploadResponse instance;
public CreateFilePartUploadResponseTests()
{
// TODO uncomment below to create an instance of CreateFilePartUploadResponse
//instance = new CreateFilePartUploadResponse();
}
public void Dispose()
{
// Cleanup when everything is done.
}
/// <summary>
/// Test an instance of CreateFilePartUploadResponse
/// </summary>
[Fact]
public void CreateFilePartUploadResponseInstanceTest()
{
// TODO uncomment below to test "IsType" CreateFilePartUploadResponse
//Assert.IsType<CreateFilePartUploadResponse>(instance);
}
/// <summary>
/// Test the property 'UploadId'
/// </summary>
[Fact]
public void UploadIdTest()
{
// TODO unit test for the property 'UploadId'
}
/// <summary>
/// Test the property 'Namespace'
/// </summary>
[Fact]
public void NamespaceTest()
{
// TODO unit test for the property 'Namespace'
}
/// <summary>
/// Test the property 'Object'
/// </summary>
[Fact]
public void ObjectTest()
{
// TODO unit test for the property 'Object'
}
/// <summary>
/// Test the property 'TimeCreated'
/// </summary>
[Fact]
public void TimeCreatedTest()
{
// TODO unit test for the property 'TimeCreated'
}
/// <summary>
/// Test the property 'Bucket'
/// </summary>
[Fact]
public void BucketTest()
{
// TODO unit test for the property 'Bucket'
}
}
}