github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/moduletest/status_string.go (about) 1 // Code generated by "stringer -type=Status status.go"; DO NOT EDIT. 2 3 package moduletest 4 5 import "strconv" 6 7 func _() { 8 // An "invalid array index" compiler error signifies that the constant values have changed. 9 // Re-run the stringer command to generate them again. 10 var x [1]struct{} 11 _ = x[Pending-0] 12 _ = x[Skip-1] 13 _ = x[Pass-2] 14 _ = x[Fail-3] 15 _ = x[Error-4] 16 } 17 18 const _Status_name = "PendingSkipPassFailError" 19 20 var _Status_index = [...]uint8{0, 7, 11, 15, 19, 24} 21 22 func (i Status) String() string { 23 if i < 0 || i >= Status(len(_Status_index)-1) { 24 return "Status(" + strconv.FormatInt(int64(i), 10) + ")" 25 } 26 return _Status_name[_Status_index[i]:_Status_index[i+1]] 27 }