use of com.synopsys.integration.alert.api.common.model.AlertSerializableModel in project hub-alert by blackducksoftware.
the class AlertPagedModelTest method init.
@BeforeEach
public void init() {
testContent = new ArrayList<>();
AlertSerializableModel testAlertSerializableModel = Mockito.mock(AlertSerializableModel.class);
testContent.add(testAlertSerializableModel);
testAlertPagedModel = new AlertPagedModel(testTotalPages, testCurrentPage, testPageSize, testContent);
}
Aggregations