catalyst 0.2.9

A lightweight API testing tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::models::command::CommandStep;
use crate::models::config::Config;
use crate::models::test::Test;
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct TestSuite {
    pub config: Config,
    pub tests: Vec<Test>,
    pub setup: Option<Vec<CommandStep>>,
    pub teardown: Option<Vec<CommandStep>>,
}