thinline 0.3.1

A parser and builder for function-unittests written in comment sections for C-language family & python.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate thinlinelib;

use thinlinelib::Thinline;
use thinlinelib::language_type::C;

fn main() {
    let mut tl: Thinline<C> = Thinline::new();
    match tl.analyze_project("examples/c_project") {
        Ok(_) => {
            println!("Analyzed project successfully.");
        }
        Err(e) => println!("{}", e.to_string()),
    }
}