gitlab.com/evatix-go/core@v1.3.55/coretests/PrintValues.go (about)

     1  package coretests
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/internal/msgformats"
     7  )
     8  
     9  func PrintValue(header string, any interface{}) {
    10  	toString := ToStringValues(any)
    11  
    12  	fmt.Printf(msgformats.PrintValuesFormat, header, any, toString)
    13  }