Merge
Crypto WASM TESTS
This commit is contained in:
parent
2a00bb35e7
commit
687e6f9642
49 changed files with 6272 additions and 366 deletions
|
|
@ -251,9 +251,18 @@ mod communication_error_tests {
|
|||
|
||||
#[test]
|
||||
fn test_communication_error_display() {
|
||||
assert_eq!(format!("{}", CommunicationError::UseAfterClosed), "Use after Closed");
|
||||
assert_eq!(format!("{}", CommunicationError::StreamClosed), "Stream Closed");
|
||||
assert_eq!(format!("{}", CommunicationError::StreamError), "Stream Error");
|
||||
assert_eq!(
|
||||
format!("{}", CommunicationError::UseAfterClosed),
|
||||
"Use after Closed"
|
||||
);
|
||||
assert_eq!(
|
||||
format!("{}", CommunicationError::StreamClosed),
|
||||
"Stream Closed"
|
||||
);
|
||||
assert_eq!(
|
||||
format!("{}", CommunicationError::StreamError),
|
||||
"Stream Error"
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
|||
Loading…
Reference in a new issue