We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 026223d commit 69614ceCopy full SHA for 69614ce
src/test/java/com/bandwidth/sdk/unit/models/InitiateCallbackTest.java
@@ -40,7 +40,8 @@ public class InitiateCallbackTest {
40
.callUrl(URI.create("https://bandwidth.com"))
41
.startTime(OffsetDateTime.now())
42
.diversion(new Diversion())
43
- .stirShaken(new StirShaken());
+ .stirShaken(new StirShaken())
44
+ .uui("uui");
45
46
/**
47
* Model tests for InitiateCallback
@@ -146,4 +147,12 @@ public void stirShakenTest() {
146
147
assertThat(model.getStirShaken(), instanceOf(StirShaken.class));
148
}
149
150
+ /**
151
+ * Test the property 'uui'
152
+ */
153
+ @Test
154
+ public void uuiTest() {
155
+ assertThat(model.getUui(), instanceOf(String.class));
156
+ }
157
+
158
0 commit comments