(b *testing.B)
| 19 | } |
| 20 | |
| 21 | func BenchmarkOpenStepEncode(b *testing.B) { |
| 22 | for i := 0; i < b.N; i++ { |
| 23 | NewEncoderForFormat(&bytes.Buffer{}, OpenStepFormat).Encode(plistValueTreeRawData) |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func TestEncode(t *testing.T) { |
| 28 | for _, test := range tests { |
nothing calls this directly
no test coverage detected