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.
- Host: GitHub
- URL: https://github.com/gowtham4545/jtest
- Owner: gowtham4545
- Created: 2024-02-01T14:46:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T17:22:11.000Z (about 2 years ago)
- Last Synced: 2024-04-11T22:09:56.339Z (about 2 years ago)
- Topics: c-language, testing, testing-framework, unit-test, white-box-testing
- Language: C
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```