Documentation
1
2
3
4
5
6
7
8
9
use crate::openapi::Contact;

#[test]
fn contact_new() {
    let contact = Contact::new();
    assert!(contact.name.is_none());
    assert!(contact.url.is_none());
    assert!(contact.email.is_none());
}