(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestMasterKey_EncryptedDataKey(t *testing.T) { |
| 82 | key := MasterKey{EncryptedKey: encryptedData} |
| 83 | assert.EqualValues(t, encryptedData, key.EncryptedDataKey()) |
| 84 | } |
| 85 | |
| 86 | func TestMasterKey_Decrypt(t *testing.T) { |
| 87 | mockKeyManagement.err = nil |
nothing calls this directly
no test coverage detected