{"id":41586511,"url":"https://github.com/craflin/mingtest","last_synced_at":"2026-01-24T09:06:57.420Z","repository":{"id":69418782,"uuid":"179984907","full_name":"craflin/mingtest","owner":"craflin","description":"A minimalistic C++ unit test framework ","archived":false,"fork":false,"pushed_at":"2024-05-06T14:00:40.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-07T13:03:27.868Z","etag":null,"topics":["gtest","test","testing","unit-testing"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/craflin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-07T15:25:06.000Z","updated_at":"2024-05-06T13:58:22.000Z","dependencies_parsed_at":"2024-05-06T13:07:57.533Z","dependency_job_id":null,"html_url":"https://github.com/craflin/mingtest","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/craflin/mingtest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craflin%2Fmingtest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craflin%2Fmingtest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craflin%2Fmingtest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craflin%2Fmingtest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/craflin","download_url":"https://codeload.github.com/craflin/mingtest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craflin%2Fmingtest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28722070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gtest","test","testing","unit-testing"],"created_at":"2026-01-24T09:06:57.346Z","updated_at":"2026-01-24T09:06:57.410Z","avatar_url":"https://github.com/craflin.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Ming Test\n\n[![Build Status](http://xaws6t1emwa2m5pr.myfritz.net:8080/buildStatus/icon?job=craflin%2Fmingtest%2Fmaster)](http://xaws6t1emwa2m5pr.myfritz.net:8080/job/craflin/job/mingtest/job/master/)\n\nMing Test is a minimalistic C++ unit test framework and a \"drop in\" replacement for the gtest (and the gtest_main) library. Contrarily to google test, it compiles quickly, does some basic memory consistency checking, does not depend on modern C++, does not conflict with other libraries, does not cause warnings when evaluating simple expressions and does not interfere with debugging.\n\nFeatures:\n* Very small include header that does not include system or standard library headers\n* Easily integratable in CMake projects\n* No dependency on C++11\n* JUnit test report generation\n* Memory checking on Windows based on `_CrtSetDbgFlag`\n* No catching of unexpected exceptions when launched in a debugger\n* Breaking at failed assertions when running in a debugger\n\n## Example\n\nWrite C++ code like this:\n\n```cpp\n#include \u003cgtest/gtest.h\u003e\n\nTEST(Example, TestName1)\n{\n    int a = 32;\n    int b = 32;\n    EXPECT_TRUE(a == b);\n}\n\nTEST(Example, TestName2)\n{\n    int a = 32;\n    int b = 33;\n    EXPECT_FALSE(a == b);\n}\n```\n\n... and build it as an executable. Link it against `gtest` and `gtest_main`. Then launch the executable to run the test. You can also use the assertion macros `EXPECT_THROW` and `EXPECT_ANY_THROW`. (And some rather pointless macros like `EXPECT_EQ`, `EXPECT_NE`, `EXPECT_GE`, `EXPECT_GT`, `EXPECT_LE`, `EXPECT_LT` and `EXPECT_NO_THROW` if you like.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraflin%2Fmingtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcraflin%2Fmingtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraflin%2Fmingtest/lists"}