public void GetGetTop5ProductsSold_Given_Null_Should_ThrowArgumentNullException()
        {
            //Arrange
            CollectionOfMerchantOrderResponse sut = null;

            //Act & Assert
            sut.Invoking(s => s.GetTop5ProductsSold()).Should().Throw <ArgumentNullException>();
        }