use of org.opennms.netmgt.model.AggregateStatusView in project opennms by OpenNMS.
the class DefaultSiteStatusServiceIT method testCreateAggregateStatusView.
@Test
@Transactional
public void testCreateAggregateStatusView() {
m_databasePopulator.populateDatabase();
AggregateStatusView view = m_aggregateService.createAggregateStatusView(null);
assertNotNull(view);
assertFalse(view.getStatusDefinitions().isEmpty());
m_databasePopulator.resetDatabase();
}
Aggregations