Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uael/cute
cute - c unit test as simple as possible
https://github.com/uael/cute
c cunit unit-testing
Last synced: about 2 months ago
JSON representation
cute - c unit test as simple as possible
- Host: GitHub
- URL: https://github.com/uael/cute
- Owner: uael
- License: mit
- Created: 2017-05-23T15:44:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-06T09:17:09.000Z (over 7 years ago)
- Last Synced: 2024-12-21T16:58:21.860Z (about 2 months ago)
- Topics: c, cunit, unit-testing
- Language: C
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cute
cute - c unit test as simple as possible[![Build Status](https://travis-ci.org/uael/cute.svg?branch=master)](https://travis-ci.org/uael/cute)
[![Build status](https://ci.appveyor.com/api/projects/status/ka4dcr4vuvwcfsb6/branch/master?svg=true)](https://ci.appveyor.com/project/uael/cute/branch/master)1 header 1 assertion and without fonctionality :tada:
```bash
$ mkdir build & cd build
$ cmake ..
$ make
$ ctest --verbose
...
Start 1: cute1: Test command: /home/travis/build/uael/cute/build/test/cute_test
1: Test timeout computed to be: 9.99988e+06
1: Test: cute:dummy1 ...................... [PASS ~> OK]
1: Test: cute:dummy12 ..................... [FAIL ~> OK] '/home/travis/build/uael/cute/test/cute.c:46 -> 1 == self->dummy'
1: Test: cute:dummy2 ...................... [PASS ~> OK]
1: Test: cute:dummy22 ..................... [FAIL ~> OK] '/home/travis/build/uael/cute/test/cute.c:56 -> 1 == self->dummy'
1: Test: cute:dummy3 ...................... [PASS ~> OK]
1/1 Test #1: cute ............................. Passed 0.00 sec100% tests passed, 0 tests failed out of 1
Total Test time (real) = 0.01 sec
```