#![allow(unused_imports)]
#![allow(dead_code)]
use feignhttp::feign;
#[test]
fn test_validate_struct_impl () {
pub struct Http {}
impl Http {}
}
#[test]
fn test_validate_impl_url () {
pub struct Http {}
impl Http {}
}
#[test]
fn test_validate_impl_url2 () {
pub struct Http {}
impl Http {}
}
#[test]
fn test_validate_impl_method () {
pub struct Http {}
impl Http {
pub async fn get() {}
}
}
#[test]
fn test_validate_impl_method_path () {
pub struct Http {}
impl Http {
}
}