mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Add basic Display test
This commit is contained in:
parent
63ba03bacb
commit
4778dc126c
2 changed files with 39 additions and 0 deletions
39
tests/test_display.rs
Normal file
39
tests/test_display.rs
Normal 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);
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue