public void BuildWithOnlyTotalReturnsEmptyListForGivenEmptyList()
        {
            getStocksFunc = () => emptyStockSet;
            var sut = new SummaryBuilder(getStocksFunc);

            CollectionAssert.IsEmpty(sut.WithTotal().Build());
        }