public virtual ILeanKitLanePointsHistory CreateLanePointsHistory(string hostName, string userName, string password, long boardId, List <long> ignoredLanes) { var history = new LeanKitLanePointsHistory(hostName, userName, password, boardId); return(new LeanKitFilteredLanePointsHistory(history, ignoredLanes)); }
private void RunTest(long boardId = 100, int numberOfDaysHistory = 10) { target = new LeanKitLanePointsHistory(mockApi.Object, boardId); target.Update(numberOfDaysHistory); }