generate_test_macro 0.1.2

A proc macro for writing test suites as methods on a struct, generating a macro_rules! macro to instantiate each test individually.
Documentation
// Test 8 – mixed suite: some #[test] methods take self, some do not
//
// When at least one test takes self, the constructor args must appear in the
// macro pattern.  Tests without self should still compile and run correctly.

mod mixed_suite {
    use generate_test_macro::generate_test_macro;

    pub struct MixedSuite {
        value: usize,
    }

    #[generate_test_macro(mixed_suite)]
    impl MixedSuite {
        pub fn new(value: usize) -> Self {
            Self { value }
        }

        // Static – does not need an instance.
        #[test]
        fn static_always_passes() {}

        // Instance – needs `new`.
        #[test]
        fn instance_value_correct(self) {
            assert_eq!(self.value, 99);
        }
    }
}

use mixed_suite::MixedSuite;
mixed_suite!(run_mixed_suite: MixedSuite = MixedSuite::new(99));