(b *testing.B)
| 112 | } |
| 113 | |
| 114 | func BenchmarkObjectGetFieldNameWithElem(b *testing.B) { |
| 115 | m := NewMapper() |
| 116 | for i := 0; i < b.N; i++ { |
| 117 | m.GetFieldName(testValue.Elem(), 0) |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | func Test_Object_CheckExistsField(t *testing.T) { |
| 122 | m := NewMapper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…