github.com/m4gshm/gollections@v0.0.13-0.20240331203319-a34a86e58a24/internal/examples/loopexamples/sum_Of_test.go (about)

     1  package loopexamples
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  
     8  	"github.com/m4gshm/gollections/loop"
     9  	"github.com/m4gshm/gollections/loop/sum"
    10  )
    11  
    12  func Test_Sum(t *testing.T) {
    13  
    14  	var sum = sum.Of(loop.Of(1, 2, 3, 4, 5, 6)) //21
    15  
    16  	assert.Equal(t, 21, sum)
    17  }