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

     1  package coretests
     2  
     3  import "gitlab.com/evatix-go/core/constants"
     4  
     5  const (
     6  	commonJoiner = constants.Space
     7  	// notEqualComparisonMessageFormat
     8  	//
     9  	//  - Left FullPublicFieldsJson, f1String, f2Integer
    10  	//  - Right FullPublicFieldsJson, f1String, f2Integer
    11  	notEqualComparisonMessageFormat = "Compare :\n" +
    12  		" Left  = %s f1String=%s f2Int=%d\n" +
    13  		" Right = %s f1String=%s f2Int=%d\n"
    14  )