(t *testing.T)
| 156 | } |
| 157 | |
| 158 | func TestMasterKey_ToString(t *testing.T) { |
| 159 | key, err := NewMasterKey(testKeyID1) |
| 160 | assert.NoError(t, err) |
| 161 | assert.Equal(t, testKeyID1, key.ToString()) |
| 162 | } |
| 163 | |
| 164 | func TestMasterKey_ToMap(t *testing.T) { |
| 165 | key, err := NewMasterKey(testKeyID1) |
nothing calls this directly
no test coverage detected