-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompactDesignationColumnTests.cs
More file actions
127 lines (112 loc) · 3.43 KB
/
CompactDesignationColumnTests.cs
File metadata and controls
127 lines (112 loc) · 3.43 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
119
120
121
122
123
124
125
126
127
/*
* 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 CompactDesignationColumn
/// </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 CompactDesignationColumnTests : IDisposable
{
// TODO uncomment below to declare an instance variable for CompactDesignationColumn
//private CompactDesignationColumn instance;
public CompactDesignationColumnTests()
{
// TODO uncomment below to create an instance of CompactDesignationColumn
//instance = new CompactDesignationColumn();
}
public void Dispose()
{
// Cleanup when everything is done.
}
/// <summary>
/// Test an instance of CompactDesignationColumn
/// </summary>
[Fact]
public void CompactDesignationColumnInstanceTest()
{
// TODO uncomment below to test "IsType" CompactDesignationColumn
//Assert.IsType<CompactDesignationColumn>(instance);
}
/// <summary>
/// Test the property 'OriginalHeaderName'
/// </summary>
[Fact]
public void OriginalHeaderNameTest()
{
// TODO unit test for the property 'OriginalHeaderName'
}
/// <summary>
/// Test the property 'ObjectName'
/// </summary>
[Fact]
public void ObjectNameTest()
{
// TODO unit test for the property 'ObjectName'
}
/// <summary>
/// Test the property 'ReferenceObjectName'
/// </summary>
[Fact]
public void ReferenceObjectNameTest()
{
// TODO unit test for the property 'ReferenceObjectName'
}
/// <summary>
/// Test the property 'ObjectType'
/// </summary>
[Fact]
public void ObjectTypeTest()
{
// TODO unit test for the property 'ObjectType'
}
/// <summary>
/// Test the property 'Formula'
/// </summary>
[Fact]
public void FormulaTest()
{
// TODO unit test for the property 'Formula'
}
/// <summary>
/// Test the property 'DimensionAlias'
/// </summary>
[Fact]
public void DimensionAliasTest()
{
// TODO unit test for the property 'DimensionAlias'
}
/// <summary>
/// Test the property 'ExternalDimName'
/// </summary>
[Fact]
public void ExternalDimNameTest()
{
// TODO unit test for the property 'ExternalDimName'
}
/// <summary>
/// Test the property 'SolveOrder'
/// </summary>
[Fact]
public void SolveOrderTest()
{
// TODO unit test for the property 'SolveOrder'
}
}
}