Skip to content

Litest, a super lite C++ testing framework implemention inspired by CppUnitLite.

Notifications You must be signed in to change notification settings

zhenliang/Litest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Litest, a super lite C++ testing framework implemention inspired by CppUnitLite.

Usage:
    - Just include litest.h and all is settled.
    - See demo.cpp for details.

Short Sample:

    // file: main.cpp

    #include "litest.h"

    TEST(SimpleDemo)
    {
        CHECK(1 > 2); 
    }

    int main()
    {
        return 0;
    }

About

Litest, a super lite C++ testing framework implemention inspired by CppUnitLite.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published