()
| 101 | |
| 102 | #[test] |
| 103 | fn verification_method_roundtrips_to_did() { |
| 104 | let kp = KeyPair::generate(); |
| 105 | let did = did_for_public_key(&kp.public); |
| 106 | let vm = verification_method(&did); |
| 107 | assert_eq!(did_from_verification_method(&vm), did); |
| 108 | } |
| 109 | } |
nothing calls this directly
no test coverage detected