Add basic Display test

This commit is contained in:
David Tolnay 2019-10-09 08:47:55 -07:00
parent 63ba03bacb
commit 4778dc126c
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 39 additions and 0 deletions

39
tests/test_display.rs Normal file
View file

@ -0,0 +1,39 @@
use std::fmt::Display;
use thiserror::Error;
#[derive(Error, Debug)]
#[error("braced error: {}", msg)]
struct BracedError {
msg: String,
}
#[derive(Error, Debug)]
#[error("braced error")]
struct BracedUnused {
extra: usize,
}
#[derive(Error, Debug)]
#[error("tuple error: {}", .0)]
struct TupleError(usize);
#[derive(Error, Debug)]
#[error("unit error")]
struct UnitError;
fn assert<T: Display>(expected: &str, value: T) {
assert_eq!(expected, value.to_string());
}
#[test]
fn test_display() {
assert(
"braced error: T",
BracedError {
msg: "T".to_owned(),
},
);
assert("braced error", BracedUnused { extra: 0 });
assert("tuple error: 0", TupleError(0));
assert("unit error", UnitError);
}