| Conditions | 1 | 
| Total Lines | 18 | 
| Code Lines | 13 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | package internal | ||
| 33 | func getEachTestData() map[string]struct { | ||
| 34 | 	inputValue  interface{} | ||
| 35 | 	mapFunction func(a interface{}, i int) | ||
| 36 | err error | ||
| 37 | } { | ||
| 38 | |||
| 39 | 	testData := map[string]struct { | ||
| 40 | 		inputValue  interface{} | ||
| 41 | 		mapFunction func(a interface{}, i int) | ||
| 42 | err error | ||
| 43 | 	}{ | ||
| 44 | 		"string": { | ||
| 45 | 			inputValue:  []string{"gotilty", "gotil"}, | ||
| 46 | mapFunction: printTestLine, | ||
| 47 | err: nil, | ||
| 48 | }, | ||
| 49 | } | ||
| 50 | return testData | ||
| 51 | } | ||
| 52 |