(b *testing.B)
| 168 | } |
| 169 | |
| 170 | func BenchmarkGetFieldNameWithElem(b *testing.B) { |
| 171 | for i := 0; i < b.N; i++ { |
| 172 | GetFieldName(testValue.Elem(), 0) |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | func Test_CheckExistsField(t *testing.T) { |
| 177 | Register(&testStruct{}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…