An open API service indexing awesome lists of open source software.

https://github.com/gowtham4545/jtest

Jtest is a unit testing framework built in c. It is used to write test-cases on c programs.
https://github.com/gowtham4545/jtest

c-language testing testing-framework unit-test white-box-testing

Last synced: 9 months ago
JSON representation

Jtest is a unit testing framework built in c. It is used to write test-cases on c programs.

Awesome Lists containing this project

README

          

# Jtest

**Jtest** is a unit testing framework built in c. It is used to write test-cases on c programs.

#### Running the tests

- add the test files in makefile

```makefile
run: build
./a

build:
gcc \
test/prog1.c \
test/prog2.c \
Main.c \
-o a
```
- execute make command

```bash
make
```