Skip to content

Commit 69614ce

Browse files
committed
update unit test
1 parent 026223d commit 69614ce

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/test/java/com/bandwidth/sdk/unit/models/InitiateCallbackTest.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public class InitiateCallbackTest {
4040
.callUrl(URI.create("https://bandwidth.com"))
4141
.startTime(OffsetDateTime.now())
4242
.diversion(new Diversion())
43-
.stirShaken(new StirShaken());
43+
.stirShaken(new StirShaken())
44+
.uui("uui");
4445

4546
/**
4647
* Model tests for InitiateCallback
@@ -146,4 +147,12 @@ public void stirShakenTest() {
146147
assertThat(model.getStirShaken(), instanceOf(StirShaken.class));
147148
}
148149

150+
/**
151+
* Test the property 'uui'
152+
*/
153+
@Test
154+
public void uuiTest() {
155+
assertThat(model.getUui(), instanceOf(String.class));
156+
}
157+
149158
}

0 commit comments

Comments
 (0)