use of com.github.vase4kin.teamcityapp.navigation.api.NavigationItem in project TeamCityApp by vase4kin.
the class NavigationDataModelImplTest method testIsProject.
@Test
public void testIsProject() throws Exception {
List<NavigationItem> items = new ArrayList<>();
items.add(new Project());
mDataModel = new NavigationDataModelImpl(items);
assertThat(mDataModel.isProject(0), is(true));
}
Aggregations