catalyst 0.2.3

A lightweight API testing tool
Documentation
1
2
3
4
5
6
7
8
9
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>,
}