use of com.epam.ta.reportportal.entity.enums.TestItemTypeEnum in project commons-dao by reportportal.
the class TestItemRepositoryTest method getStatusByItemId.
@Test
void getStatusByItemId() {
TestItemTypeEnum type = testItemRepository.getTypeByItemId(1L);
Assertions.assertEquals(TestItemTypeEnum.SUITE, type);
}
Aggregations