Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

StatsTest.java 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * SonarQube Runner - Distribution
  3. * Copyright (C) 2011 SonarSource
  4. * dev@sonar.codehaus.org
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
  19. */
  20. package org.sonar.runner;
  21. import java.io.ByteArrayOutputStream;
  22. import java.io.PrintStream;
  23. import java.io.UnsupportedEncodingException;
  24. import org.junit.Test;
  25. import static org.fest.assertions.Assertions.assertThat;
  26. public class StatsTest {
  27. @Test
  28. public void shouldPrintStats() throws UnsupportedEncodingException {
  29. ByteArrayOutputStream output = new ByteArrayOutputStream();
  30. System.setOut(new PrintStream(output));
  31. new Stats().start().stop();
  32. String out = output.toString("UTF-8");
  33. String[] lines = out.split("\n");
  34. assertThat(lines).hasSize(2);
  35. assertThat(lines[0]).startsWith("Total time: ");
  36. assertThat(lines[1]).startsWith("Final Memory: ");
  37. }
  38. @Test
  39. public void shouldFormatTime() {
  40. assertThat(Stats.formatTime(1 * 60 * 60 * 1000 + 2 * 60 * 1000 + 3 * 1000 + 400)).isEqualTo("1:02:03.400s");
  41. assertThat(Stats.formatTime(2 * 60 * 1000 + 3 * 1000 + 400)).isEqualTo("2:03.400s");
  42. assertThat(Stats.formatTime(3 * 1000 + 400)).isEqualTo("3.400s");
  43. assertThat(Stats.formatTime(400)).isEqualTo("0.400s");
  44. }
  45. }