From 3e7ddeb72d52a6eab9653dab249013cf7456f39f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 9 Oct 2019 07:23:58 -0700 Subject: [PATCH] Easier display impl in tests --- tests/test.rs | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index d32af6e..12245da 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,6 +1,16 @@ use std::fmt::{self, Display}; use thiserror::Error; +macro_rules! unimplemented_display { + ($ty:ty) => { + impl Display for $ty { + fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { + unimplemented!() + } + } + }; +} + #[derive(Error, Debug)] struct BracedError { msg: String, @@ -13,20 +23,6 @@ struct TupleError(String, usize); #[derive(Error, Debug)] struct UnitError; -impl Display for BracedError { - fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { - unimplemented!() - } -} - -impl Display for TupleError { - fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { - unimplemented!() - } -} - -impl Display for UnitError { - fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { - unimplemented!() - } -} +unimplemented_display!(BracedError); +unimplemented_display!(TupleError); +unimplemented_display!(UnitError);