gitlab.com/evatix-go/core@v1.3.55/tests/testwrappers/corevalidatortestwrappers/TextValidatorsWrapper.go (about)

     1  package corevalidatortestwrappers
     2  
     3  import (
     4  	"gitlab.com/evatix-go/core/corevalidator"
     5  )
     6  
     7  type TextValidatorsWrapper struct {
     8  	Header string
     9  	// ComparingLines is actually the actual data from
    10  	// test but here it is the test cases for the expectation
    11  	ComparingLines        []string
    12  	Validators            corevalidator.TextValidators
    13  	IsSkipOnContentsEmpty bool
    14  	IsCaseSensitive       bool
    15  	ExpectationLines      []string
    16  }