public TestSlowdownInfo()

in testDuration-server/src/main/java/org/jetbrains/teamcity/testDuration/TestSlowdownInfo.java [17:27]


  public TestSlowdownInfo(int currentTestRunId,
                          int currentDuration,
                          int etalonTestRunId,
                          int etalonDuration,
                          long etalonBuildId) {
    myCurrentTestRunId = currentTestRunId;
    myCurrentDuration = currentDuration;
    myEtalonTestRunId = etalonTestRunId;
    myEtalonDuration = etalonDuration;
    myEtalonBuildId = etalonBuildId;
  }