Skip to content

Commit

Permalink
Show trend chart in details view as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Sep 20, 2021
1 parent 3345afe commit c87d387
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* @author Ullrich Hafner
*/
class FilesCountSeriesBuilderTest {
/** Verifies that an empty list of builds produces no data. */
@Test
void shouldHaveEmptyDataSetForEmptyIterator() {
FilesCountSeriesBuilder builder = new FilesCountSeriesBuilder();
Expand All @@ -39,10 +38,6 @@ private ChartModelConfiguration createConfiguration() {
return configuration;
}

/**
* Verifies that a list with one build result produces one column with rows containing the correct number of issues
* per priority.
*/
@Test
void shouldHaveThreeValuesForSingleBuild() {
FilesCountSeriesBuilder builder = new FilesCountSeriesBuilder();
Expand All @@ -59,9 +54,6 @@ void shouldHaveThreeValuesForSingleBuild() {
assertThat(dataSet.getSeries(TOTALS_KEY)).containsExactly(1);
}

/**
* Verifies that the number of builds in the chart is limited by the {@link ChartModelConfiguration} settings.
*/
@Test
void shouldHaveNotMoreValuesThatAllowed() {
FilesCountSeriesBuilder builder = new FilesCountSeriesBuilder();
Expand Down

0 comments on commit c87d387

Please sign in to comment.