xaizek / stic (License: MIT) (since 2018-12-07)
Simple Tests In C with optional automatic test registration in C.
Commit 9bc9938e13859f09de3e7c7db6d98e3b7bed1299

Account for singular in stic reports
Author: xaizek
Author date (UTC): 2020-07-02 15:14
Committer name: xaizek
Committer date (UTC): 2020-07-04 16:54
Parent(s): 09c53a905519401e57114a6165aa7b3479906b7e
Signing key: 99DC5E4DB05F6BE2
Tree: 4a4b5e54f6c334f259a2577ddd26578c4a5bb4a6
File Lines added Lines deleted
src/stic.c 2 1
File src/stic.c changed (mode: 100644) (index 5438208..3555459)
... ... void stic_test_fixture_end()
470 470 printf("\n"); printf("\n");
471 471 } }
472 472
473 sprintf(s, "%d tests run %d checks failed", nrun, nfailed);
473 sprintf(s, "%d test%s run %d check%s failed", nrun, nrun == 1 ? "" : "s",
474 nfailed, nfailed == 1 ? "" : "s");
474 475
475 476 stic_header_printer(s, stic_screen_width, ' '); stic_header_printer(s, stic_screen_width, ' ');
476 477 printf("\n"); printf("\n");
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/stic

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/stic

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master