use of org.killbill.billing.util.callcontext.InternalCallContextFactory in project killbill by killbill.
the class TestDefaultTagUserApiWithMockDao method setUp.
@BeforeMethod(groups = "fast")
public void setUp() throws Exception {
final TagDao tagDao = Mockito.mock(TagDao.class);
final InternalCallContextFactory internalCallContextFactory = Mockito.mock(InternalCallContextFactory.class);
tagDefinitionDao = Mockito.mock(TagDefinitionDao.class);
tagUserApi = new DefaultTagUserApi(internalCallContextFactory, tagDefinitionDao, tagDao);
context = Mockito.mock(DefaultCallContext.class);
}
Aggregations