#framework #test-framework #integration #integra8 #bdd #integration-tests #test

integra8_tree_formatter

Tree structured output formatters for displaying test results for the Integra8 test framework

5 releases

0.0.5-rc1 Mar 21, 2022
0.0.4-alpha Mar 20, 2022
0.0.3-alpha Mar 7, 2022
0.0.2-alpha Feb 4, 2022
0.0.1-alpha Feb 1, 2022

#2334 in Development tools

MIT/Apache

380KB
9K SLoC

Say Hello world to Integra8.

RC1 release! Minimal/No breaking changes are expected moving forward.

Happy Integra8ing!

#[macro_use]
pub extern crate integra8;

main_test! {}

#[suite]
mod introducing {
    #[setup]
    fn setup() {
        println!("Get Ready ...");
    }

    #[integration_test]
    fn hello_world_test() {
        println!("Hello integra8!");
    }

    #[teardown]
    fn teardown() {
        println!("Enjoy!");
    }
}


Why Integra8?

Thanks to its thriving community, Rust is increasingly finding more and more uses across the tech stack. With this growth comes the need for new tools to meet its new demands.

Rust has great inbuilt support for Continuous Integration Testing, Integra8's goal is to bring that same experience to the Continuous Deployment side of testing.

You should consider Integra8 for the following use cases

  • Web service testing
  • Web frontend testing
  • Blue/Green Cloud deployments
  • Certifications for multiple environments
  • Running many tests at the same time
  • Anything with long-running blocking IO

Why not Integra8?

Integra8 does not aim to replace Rusts existing inbuilt libtest framework. libtest is great, and many of Integra8's features can be replicated with what's already available in the community.

Get Started

Integra8 looks and feels like most other Test frameworks, so getting started should be intuitive after learning some basics. However, as a framework intended for Continuous Deployment, Integra8 offers a lot more than just tests.

Check out the getting started guide here

Happy Integra8ing!

Dependencies

~3–13MB
~123K SLoC