github.com/golodash/godash@v1.3.0/functions/once_test.go (about)

     1  package functions
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestOnce(t *testing.T) {
     9  	fmt.Println("I don't think any test cases can be written for Once")
    10  }
    11  
    12  func BenchmarkOnce(b *testing.B) {
    13  	fmt.Println("I don't think any benchmarks can be written for Once")
    14  }