Examples of IUserStatisticDaoService


Examples of com.madgnome.jira.plugins.jirachievements.data.services.IUserStatisticDaoService

public class LevelManagerTest
{
  @Test
  public void shouldAddThreeNewLevelsToUserIfFirstCall()
  {
    IUserStatisticDaoService userStatisticDaoService = mock(IUserStatisticDaoService.class);
    UserStatistic createdUserStatistic = mock(UserStatistic.class);
    when(createdUserStatistic.getValue()).thenReturn(10);
    when(userStatisticDaoService.get(any(UserWrapper.class), any(StatisticRefEnum.class))).thenReturn(createdUserStatistic);

    IUserWrapperDaoService userWrapperDaoService = mock(IUserWrapperDaoService.class);
    IUserLevelDaoService userLevelDaoService = mock(IUserLevelDaoService.class);

    ILevelDaoService levelDaoService = mock(ILevelDaoService.class);
View Full Code Here

Examples of com.madgnome.jira.plugins.jirachievements.data.services.IUserStatisticDaoService

  }

  @Test
  public void shouldNotAddlevelsToUserIfNothingChanged()
  {
    IUserStatisticDaoService userStatisticDaoService = mock(IUserStatisticDaoService.class);
    UserStatistic createdUserStatistic = mock(UserStatistic.class);
    when(createdUserStatistic.getValue()).thenReturn(10);
    when(userStatisticDaoService.get(any(UserWrapper.class), any(StatisticRefEnum.class))).thenReturn(createdUserStatistic);

    IUserWrapperDaoService userWrapperDaoService = mock(IUserWrapperDaoService.class);
    IUserLevelDaoService userLevelDaoService = mock(IUserLevelDaoService.class);

    ILevelDaoService levelDaoService = mock(ILevelDaoService.class);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.