-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRbmSuggestionResponseTests.cs
More file actions
89 lines (79 loc) · 2.3 KB
/
Copy pathRbmSuggestionResponseTests.cs
File metadata and controls
89 lines (79 loc) · 2.3 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
/*
* Bandwidth
*
* Bandwidth's Communication APIs
*
* The version of the OpenAPI document: 1.0.0
* Contact: letstalk@bandwidth.com
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using Xunit;
using System;
using System.Linq;
using System.IO;
using System.Collections.Generic;
using Bandwidth.Standard.Model;
using Bandwidth.Standard.Client;
using System.Reflection;
using Newtonsoft.Json;
namespace Bandwidth.Standard.Test.Unit.Model
{
/// <summary>
/// Class for testing RbmSuggestionResponse
/// </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 RbmSuggestionResponseTests : IDisposable
{
private RbmSuggestionResponse instance;
public RbmSuggestionResponseTests()
{
instance = new RbmSuggestionResponse(
text: "Sample suggestion text",
postbackData: new byte[] { 1, 2, 3 },
pairedMessageId: "12345"
);
}
public void Dispose()
{
// Cleanup when everything is done.
}
/// <summary>
/// Test an instance of RbmSuggestionResponse
/// </summary>
[Fact]
public void RbmSuggestionResponseInstanceTest()
{
Assert.IsType<RbmSuggestionResponse>(instance);
}
/// <summary>
/// Test the property 'Text'
/// </summary>
[Fact]
public void TextTest()
{
Assert.IsType<string>(instance.Text);
Assert.Equal("Sample suggestion text", instance.Text);
}
/// <summary>
/// Test the property 'PostbackData'
/// </summary>
[Fact]
public void PostbackDataTest()
{
Assert.IsType<byte[]>(instance.PostbackData);
Assert.Equal(new byte[] { 1, 2, 3 }, instance.PostbackData);
}
/// <summary>
/// Test the property 'PairedMessageId'
/// </summary>
[Fact]
public void PairedMessageIdTest()
{
Assert.IsType<string>(instance.PairedMessageId);
Assert.Equal("12345", instance.PairedMessageId);
}
}
}