thinline 0.3.1

A parser and builder for function-unittests written in comment sections for C-language family & python.
Documentation
#ifndef HEADER1_H_
#define HEADER1_H_

namespace ns1 {
    /**
     * # TESTCLASS(c1)
     *     # SET_UP_CONTEXT:
     *         this->class_inst = new c1();
     *     # TEAR_DOWN_CONTEXT:
     *         delete this->class_inst;
     *         this->class_inst = nullptr;
     *     # CLASS_CONTEXT:
     *         c1 * class_inst;
     */
    class c1 {
        public:
            /**
             * # TESTCASE(c1::AddTwoNumbers)
             *     unsigned int no1 = 5;
             *     # EQ[this->class_inst->TL_FCT(no1: no1, no2: 10) => 15]
             *     # LT[this->class_inst->TL_FCT(no1: no1, no2: 10) => 30]
             */
            unsigned int add_two_numbers(unsigned int no1, unsigned int no2);

            c1() = default;
            ~c1() = default;

    };

    /**
    * # TESTCLASS(c2)
    *     # SET_UP_CONTEXT:
    *         this->class_inst = new c2();
    *     # TEAR_DOWN_CONTEXT:
    *         delete this->class_inst;
    *         this->class_inst = nullptr;
    *     # CLASS_CONTEXT:
    *         c2 * class_inst;
    */
    class c2 {
        public:
            c2() = default;
            ~c2() = default;

            /**
            * # TESTCASE(c2::AddThreeNumbers)
            *     unsigned int no1 = 5;
            *     unsigned int no2 = 10;
            *     # EQ[this->class_inst->TL_FCT(no1: no1, no2: no2, no3: 5) => 20]
            */
            unsigned int add_three_numbers(unsigned int no1, unsigned int no2, unsigned int no3);
    };
}  // namespace ns1

namespace ns2 {
    class c3 {
        public:
            c3() = default;
            ~c3() = default;

            unsigned int return5();
    };
}  // namespace ns2

#endif //HEADER1_H_